skill-assessment-app/app/views/review/index.html.erb

20 lines
490 B
Plaintext
Raw Normal View History

2016-07-31 16:34:35 -05:00
<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, review_test_path(candidate.test_hash) %></td>
<td><%= candidate.experience %> years</td>
<td><%= mail_to(candidate.recruiter.email) %></td>
</tr>
<% end %>
</table>
</main>