Sha256: c721fd0054e599d1b72f661e596155434ef999f0dc177e5dbc57368c603d996d
Contents?: true
Size: 1 KB
Versions: 24
Compression:
Stored size: 1 KB
Contents
<h1>Listing categories</h1> <ul class="choices"> <li><%= link_to 'New category', new_admin_category_path %></li> </ul> <table> <thead> <tr> <%= sortable_table_header :name => "Title", :sort => "title" %> <%= sortable_table_header :name => "Description", :sort => "description" %> <th colspan="2">Actions</th> </tr> </thead> <tbody> <% @categories.each do |category| %> <tr id="category-<%= category.id %>"> <td><%= link_to category.title, admin_category_path(category) %></td> <td><%=h category.description %></td> <td><%= link_to 'Edit', admin_category_path(category), :class => 'edit' %></td> <td><%= link_to 'Destroy', admin_category_path(category), :confirm => 'Are you sure?', :method => :delete, :class => 'delete' %></td> </tr> <% end %> </tbody> <tfoot> <tr> <%= sortable_table_header :name => "Title", :sort => "title" %> <%= sortable_table_header :name => "Description", :sort => "description" %> </tr> </tfoot> </table>
Version data entries
24 entries across 24 versions & 1 rubygems