skill-assessment-app/app/views/admin/candidate/index.html.erb

37 lines
1.1 KiB
Plaintext
Raw Normal View History

2016-09-22 16:29:19 -05:00
<%
content_for :section_title, "Candidates"
%>
2016-07-31 09:56:02 -05:00
<main class="summary_tpl">
2016-09-22 13:30:30 -05:00
<%= link_to(admin_new_candidate_path, { class: 'secondary-btn' }) do %>
2016-07-31 16:34:35 -05:00
<button>Create New Candidate</button>
<% end if policy(Candidate).create? %>
2016-07-31 09:56:02 -05:00
<table cellspacing="0" cellpadding="0">
<tr>
<th>Candidate</th>
2016-08-05 14:13:45 -05:00
<th>Test ID</th>
2016-07-31 09:56:02 -05:00
<th>Email</th>
<th>Experience</th>
<th>Progress</th>
<th>Completed</th>
<th>Reminded</th>
2016-07-31 09:56:02 -05:00
</tr>
<% @candidates.each do |candidate| %>
<tr>
2016-09-22 13:30:30 -05:00
<td><%= link_to candidate.name, admin_edit_candidate_path(candidate.id) %></td>
2016-08-05 14:13:45 -05:00
<td><%= candidate.test_hash %></td>
2016-09-15 10:01:31 -05:00
<td>
<%= mail_to(candidate.email) %>
<br />
2016-09-22 13:30:30 -05:00
<%= link_to "resend welcome email", admin_resend_welcome_path(candidate.id), remote: true, class: '', data: { id: 'ajax-action' } %>
2016-09-15 10:01:31 -05:00
</td>
2016-07-31 09:56:02 -05:00
<td><%= candidate.experience %> years</td>
<td><%= candidate.status %></td>
<td><%= candidate.completed ? "Submitted" : "" %></td>
<td><%= candidate.reminded ? "Yes" : "" %></td>
2016-07-31 09:56:02 -05:00
</tr>
<% end %>
</table>
</main>