Sha256: c603e1ab714dfeb7aef163b9fbac591b2a9ec268dc404d3cb2d34c54322a0af8
Contents?: true
Size: 654 Bytes
Versions: 19
Compression:
Stored size: 654 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([:user, job]) %> <%= edit_link([:edit_user, job]) %> <%= destroy_link([:user, job]) %> </td> </tr> <% end %> </table> <%= paginate @jobs %>
Version data entries
19 entries across 19 versions & 1 rubygems