Sha256: fef5e9e5df92eff20ce215ab1ed51958aa9f0c535fee786757c7ad77c9c20fc5
Contents?: true
Size: 843 Bytes
Versions: 25
Compression:
Stored size: 843 Bytes
Contents
<h1><%= t('.title') %></h1> <table class="wide"> <thead> <tr> <th><%= Recruiter::Article.human_attribute_name(:title) %></th> <th><%= Recruiter::Article.human_attribute_name(:published) %></th> <th><%= Recruiter::Article.human_attribute_name(:published_at) %></th> <th class="actions"><%= new_link({ action: :new }, class: 'expand') %></th> </tr> </thead> <% @articles.each do |article| %> <tr> <td><%= article.decorate.title %></td> <td><%= article.decorate.published? %></td> <td><%= article.decorate.published_at %></td> <td class="actions"> <%= show_link([:user, article]) %> <%= edit_link(action: :edit, id: article.id) %> <%= destroy_link(action: :destroy, id: article.id) %> </td> </tr> <% end %> </table> <%= paginate @articles %>
Version data entries
25 entries across 25 versions & 1 rubygems