add status to results list

This commit is contained in:
Mark Moser 2016-11-22 17:04:55 -06:00
parent 4d8cf26c54
commit 97d2392832
2 changed files with 3 additions and 1 deletions

View File

@ -16,7 +16,7 @@
<th>Progress</th> <th>Progress</th>
<th>Completed</th> <th>Completed</th>
<th>Reminded</th> <th>Reminded</th>
<th>Review Status</th> <th>Interview Status</th>
</tr> </tr>
<% @candidates.each do |candidate| %> <% @candidates.each do |candidate| %>

View File

@ -8,6 +8,7 @@
<th>Test ID</th> <th>Test ID</th>
<th>Experience</th> <th>Experience</th>
<th>Recruiter</th> <th>Recruiter</th>
<th>Interview Status</th>
</tr> </tr>
<% @candidates.each do |candidate| %> <% @candidates.each do |candidate| %>
@ -15,6 +16,7 @@
<td><%= link_to candidate.test_hash, admin_result_path(candidate.test_hash) %></td> <td><%= link_to candidate.test_hash, admin_result_path(candidate.test_hash) %></td>
<td><%= candidate.experience %> years</td> <td><%= candidate.experience %> years</td>
<td><%= mail_to(candidate.recruiter.email) %></td> <td><%= mail_to(candidate.recruiter.email) %></td>
<td><%= candidate.review_status unless candidate.pending? %></td>
</tr> </tr>
<% end %> <% end %>
</table> </table>