completes #84 : interview request status tweaks

This commit is contained in:
Mark Moser
2016-11-28 15:40:25 -06:00
parent f94de75f01
commit bcb840c986
4 changed files with 25 additions and 17 deletions

View File

@ -16,7 +16,7 @@
<th>Progress</th>
<th>Completed</th>
<th>Reminded</th>
<th>Interview Request</th>
<th>Interview?</th>
</tr>
<% @candidates.each do |candidate| %>
@ -32,7 +32,7 @@
<td><%= candidate.status %></td>
<td><%= candidate.completed ? link_to("Submitted", admin_result_path(candidate.test_hash)) : "" %></td>
<td><%= candidate.reminded ? "Yes" : "" %></td>
<td><%= candidate.review_status unless candidate.pending? %></td>
<td><%= candidate.interview? %></td>
</tr>
<% end %>
</table>