hiding pending from candidates list

This commit is contained in:
Mark Moser 2016-11-22 16:51:30 -06:00
parent 35339b1d30
commit d913e816b5

View File

@ -31,7 +31,7 @@
<td><%= candidate.status %></td> <td><%= candidate.status %></td>
<td><%= candidate.completed ? link_to("Submitted", admin_result_path(candidate.test_hash)) : "" %></td> <td><%= candidate.completed ? link_to("Submitted", admin_result_path(candidate.test_hash)) : "" %></td>
<td><%= candidate.reminded ? "Yes" : "" %></td> <td><%= candidate.reminded ? "Yes" : "" %></td>
<td><%= candidate.review_status %></td> <td><%= candidate.review_status unless candidate.pending? %></td>
</tr> </tr>
<% end %> <% end %>
</table> </table>