Sha256: 8b5540b3d65414c1e0feeb9b5eaadb55972407c9533b9f7a2282a12772628ca7

Contents?: true

Size: 650 Bytes

Versions: 1

Compression:

Stored size: 650 Bytes

Contents

<table>
  <tr>
    <th><%= _("Category title") %></th>
    <th><%= _("Articles") %></th>
    <th><%= _("Status") %></th>
    <th colspan="3"><%= _("Action") %></th>
  </tr>
  <% for category in @categories -%>
  <tr <%= alternate_class -%> id="category_<%= category.id -%>">
    <td><%= category.name %></td>
    <td><%= pluralize(category.articles.size, 'article') %></td>
    <td class="operation"><%= image_tag 'checked.png' %></td>
    <td class="operation"><%= link_to_show category %></td>
    <td class="operation"><%= link_to_edit category %></td>
    <td class="operation"><%= link_to_destroy category %></td>
  </tr>  
  <% end -%>
</table>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
typo-4.1.1 app/views/admin/categories/_categories.rhtml