recruitment/app/views/recruitments/_employee_dashboard.html.erb

23 lines
698 B
Plaintext

<table class="table table-striped jobs-table">
<thead>
<tr>
<th><%= t("recruitment.job_title") %></th>
<th><%= t("recruitment.company_name") %></th>
<th><%= t("recruitment.applied_date") %></th>
</tr>
</thead>
<tbody>
<% if @applications.blank? %>
<tr><td class="no-jobs" colspan="3"><%= t("recruitment.no_jobs_found") %></td></tr>
<% else %>
<% @applications.each do |app| %>
<% job = app.get_job %>
<tr>
<td><a href="<%= @page + "/" + job.to_param %>" target="_blank"><%= job.job_title %></a></td>
<td><%= job.employer_profile.company_name %></td>
<td><%= app.created_at.strftime("%d %B %Y") %></td>
</tr>
<% end %>
<% end %>
</tbody>
</table>