24 lines
651 B
Plaintext
24 lines
651 B
Plaintext
<%
|
|
content_for :section_title, "Completed Tests"
|
|
content_for :title, "Quiz Results - Skills Assessment Admin"
|
|
%>
|
|
<main class="summary_tpl">
|
|
<table cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<th>Test ID</th>
|
|
<th>Experience</th>
|
|
<th>Recruiter</th>
|
|
<th>Interview?</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>
|
|
<td><%= candidate.interview? %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
</main>
|