Sha256: ad360e3bedf39edb5c67a7d7720028ac7fddbb7c1920b5e97301e2ec46025664
Contents?: true
Size: 1.07 KB
Versions: 13
Compression:
Stored size: 1.07 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 class="action"><%= link_to 'Edit', admin_category_path(category), :class => 'edit' %></td> <td class="action"><%= 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" %> <th colspan="2">Actions</th> </tr> </tfoot> </table>
Version data entries
13 entries across 13 versions & 1 rubygems