Sha256: ef25d2245fb0a53fdede07b54c0101464e4cfc871ab7b61c86f1989109cbf891
Contents?: true
Size: 1.3 KB
Versions: 10
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
10 entries across 10 versions & 1 rubygems