linked into views

This commit is contained in:
Mark Moser
2016-11-18 17:43:24 -06:00
committed by Mark Moser
parent 37aa17ec1f
commit 5845f76e1d
14 changed files with 107 additions and 31 deletions

View File

@ -15,6 +15,7 @@
<th>Progress</th>
<th>Completed</th>
<th>Reminded</th>
<th>Review Status</th>
</tr>
<% @candidates.each do |candidate| %>
@ -28,8 +29,9 @@
</td>
<td><%= candidate.experience %> years</td>
<td><%= candidate.status %></td>
<td><%= candidate.completed ? "Submitted" : "" %></td>
<td><%= candidate.completed ? link_to("Submitted", admin_result_path(candidate.test_hash)) : "" %></td>
<td><%= candidate.reminded ? "Yes" : "" %></td>
<td><%= candidate.review_status %></td>
</tr>
<% end %>
</table>