skill-assessment-app/app/views/admin/result/index.html.erb
2016-09-22 14:19:44 -05:00

20 lines
491 B
Plaintext

<main class="summary_tpl">
<h1>Completed Tests</h1>
<table cellspacing="0" cellpadding="0">
<tr>
<th>Test ID</th>
<th>Experience</th>
<th>Recruiter</th>
</tr>
<% @candidates.each do |candidate| %>
<tr>
<td><%= link_to candidate.test_hash, admin_result_path(candidate.test_hash) %></td>
<td><%= candidate.experience %> years</td>
<td><%= mail_to(candidate.recruiter.email) %></td>
</tr>
<% end %>
</table>
</main>