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

24 lines
564 B
Plaintext
Raw Normal View History

2016-07-31 09:56:02 -05:00
<main class="summary_tpl">
<h1>Candidates</h1>
<%= link_to "Create New Candidate", new_candidate_path, {class: 'button'} %>
<table cellspacing="0" cellpadding="0">
<tr>
<th>Candidate</th>
<th>Email</th>
<th>Experience</th>
<th>Status</th>
</tr>
<% @candidates.each do |candidate| %>
<tr>
<td><%= candidate.name %></td>
<td><%= mail_to(candidate.email) %></td>
<td><%= candidate.experience %> years</td>
<td><%= candidate.status %></td>
</tr>
<% end %>
</table>
</main>