Sha256: 7a615c6cd7112cf4458f600d8dab21e2888e76240e921fb6bff23c9834bac482

Contents?: true

Size: 1.3 KB

Versions: 5

Compression:

Stored size: 1.3 KB

Contents

<% content_for :page_title do %>
  <%= plural_resource_name(Spree::ShippingCategory) %>
<% end %>

<% content_for :page_actions do %>
  <%= button_link_to Spree.t(:new_shipping_category), new_object_url, class: "btn-success", icon: 'add.svg' %>
<% end if can? :create, Spree::ShippingCategory %>

<% if @shipping_categories.any? %>
<div class="table-responsive">
  <table class="table">
    <thead>
      <tr data-hook="categories_header">
        <th><%= Spree.t(:name) %></th>
        <th class="actions"></th>
      </tr>
    </thead>
    <tbody>
      <% @shipping_categories.each do |shipping_category|%>
      <tr id="<%= spree_dom_id shipping_category %>" data-hook="category_row">
        <td><%= shipping_category.name %></td>
        <td class="actions actions-2 text-right">
          <%= link_to_edit(shipping_category, no_text: true) if can? :edit, shipping_category %>
          <%= link_to_delete(shipping_category, no_text: true) if can? :edit, shipping_category %>
        </td>
      </tr>
      <% end %>
    </tbody>
  </table>
</div>  
<% else %>
  <div class="alert alert-info no-objects-found">
    <%= Spree.t(:no_resource_found, resource: plural_resource_name(Spree::ShippingCategory)) %>,
    <%= link_to(Spree.t(:add_one), new_object_url) if can? :create, Spree::ShippingCategory %>!
  </div>
<% end %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
spree_backend-4.2.0.rc4 app/views/spree/admin/shipping_categories/index.html.erb
spree_backend-4.2.0.rc3 app/views/spree/admin/shipping_categories/index.html.erb
spree_backend-4.2.0.rc2 app/views/spree/admin/shipping_categories/index.html.erb
spree_backend-4.2.0.rc1 app/views/spree/admin/shipping_categories/index.html.erb
spree_backend-4.2.0.beta app/views/spree/admin/shipping_categories/index.html.erb