Sha256: 96038c51ee0bf0b42c575d1684f84f4ab7a07eebdac93fd1f2f03ec227b58870
Contents?: true
Size: 631 Bytes
Versions: 1
Compression:
Stored size: 631 Bytes
Contents
<h1><%= t('.title') %></h1> <table class="wide"> <thead> <tr> <th><%= Recruiter::Job.human_attribute_name(:title) %></th> <th><%= Recruiter::Job.human_attribute_name(:published_at) %></th> <th class="actions"><%= new_link(:new_user_job, class: 'expand') %></th> </tr> </thead> <% @jobs.each do |job| %> <tr> <td><%= job.decorate.title %></td> <td><%= job.decorate.created_at_ago %></td> <td class="actions"> <%= show_link(job) %> <%= edit_link([:edit, job]) %> <%= destroy_link(job) %> </td> </tr> <% end %> </table> <%= paginate @jobs %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
recruiter-0.1.5 | app/views/recruiter/users/jobs/index.html.erb |