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

Version Path
beef-articles-0.1.0 app/views/admin/categories/index.html.erb
beef-articles-0.2.0 app/views/admin/categories/index.html.erb
beef-articles-0.2.1 app/views/admin/categories/index.html.erb
beef-articles-0.2.2 app/views/admin/categories/index.html.erb
beef-articles-0.3.0 app/views/admin/categories/index.html.erb
beef-articles-0.3.1 app/views/admin/categories/index.html.erb
beef-articles-0.3.10 app/views/admin/categories/index.html.erb
beef-articles-0.3.11 app/views/admin/categories/index.html.erb
beef-articles-0.3.12 app/views/admin/categories/index.html.erb
beef-articles-0.3.13 app/views/admin/categories/index.html.erb
beef-articles-0.3.14 app/views/admin/categories/index.html.erb
beef-articles-0.3.15 app/views/admin/categories/index.html.erb
beef-articles-0.3.16 app/views/admin/categories/index.html.erb
beef-articles-0.3.18 app/views/admin/categories/index.html.erb
beef-articles-0.3.2 app/views/admin/categories/index.html.erb
beef-articles-0.3.21 app/views/admin/categories/index.html.erb
beef-articles-0.3.25 app/views/admin/categories/index.html.erb
beef-articles-0.3.3 app/views/admin/categories/index.html.erb
beef-articles-0.3.4 app/views/admin/categories/index.html.erb
beef-articles-0.3.5 app/views/admin/categories/index.html.erb