bisscomm/refinerycms-products

View on GitHub
app/views/refinery/products/admin/categories/index.html.erb

Summary

Maintainability
Test Coverage
<section id='records' class='tree'>
  <% if @categories.any? %>
    <%= render "sortable_list" %>
  <% else %>
    <% if searching? %>
      <%= t('no_results', :scope => 'refinery.admin.search') %>
    <% else %>
      <p>
        <strong>
          <%= t('.no_items_yet', :create => t('new', :scope => 'refinery.products.admin.submenu.categories')) %>
        </strong>
      </p>
    <% end %>
  <% end %>
</section>

<section id='actions'>
  <%= render 'actions' %>
</section>

<%= render '/refinery/admin/make_sortable', options: {tree: true, replaceContentsAfterUpdate: true} if @categories.many? -%>