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

Version Path
beef-articles-0.3.32 app/views/admin/categories/index.html.erb
beef-articles-0.3.33 app/views/admin/categories/index.html.erb
beef-articles-0.3.34 app/views/admin/categories/index.html.erb
beef-articles-0.4.8 app/views/admin/categories/index.html.erb
beef-articles-0.4.7 app/views/admin/categories/index.html.erb
beef-articles-0.4.6 app/views/admin/categories/index.html.erb
beef-articles-0.4.5 app/views/admin/categories/index.html.erb
beef-articles-0.4.4 app/views/admin/categories/index.html.erb
beef-articles-0.4.3 app/views/admin/categories/index.html.erb
beef-articles-0.4.2 app/views/admin/categories/index.html.erb
beef-articles-0.4.1 app/views/admin/categories/index.html.erb
beef-articles-0.4.0 app/views/admin/categories/index.html.erb
beef-articles-0.3.35 app/views/admin/categories/index.html.erb