Sha256: 94a26d67f217216a0e4df98d873c64f3523f6fba682adf69f0d6834a8d513528
Contents?: true
Size: 626 Bytes
Versions: 11
Compression:
Stored size: 626 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_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
11 entries across 11 versions & 1 rubygems