Sha256: 74ffbb506dae90f28b25a189b6dd1ac297405f17999746f5dba2adcfd346f2f5
Contents?: true
Size: 1.56 KB
Versions: 4
Compression:
Stored size: 1.56 KB
Contents
<%= render 'spree/admin/shared/shipping_tabs' %> <% admin_breadcrumb(Spree.t(:settings)) %> <% admin_breadcrumb(Spree.t('admin.tab.shipping')) %> <% admin_breadcrumb(plural_resource_name(Spree::ShippingCategory)) %> <% content_for :page_actions do %> <% if can?(:create, Spree::ShippingCategory) %> <li> <%= button_link_to Spree.t(:new_shipping_category), new_object_url %> </li> <% end %> <% end %> <% if @shipping_categories.any? %> <table class="index"> <colgroup> <col style="width: 85%"> <col style="width: 15%"> </colgroup> <thead> <tr data-hook="categories_header"> <th><%= Spree::ShippingCategory.human_attribute_name(: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" class="<%= cycle('odd', 'even')%>"> <td class="align-center" style="width:350px;"><%= shipping_category.name %></td> <td class="actions"> <% if can?(:udpate, shipping_category) %> <%= link_to_edit shipping_category, :no_text => true %> <% end %> <% if can?(:destroy, shipping_category) %> <%= link_to_delete shipping_category, :no_text => true %> <% end %> </td> </tr> <% end %> </tbody> </table> <% else %> <div class="col-xs-9 no-objects-found"> <%= render 'spree/admin/shared/no_objects_found', resource: Spree::ShippingCategory, new_resource_url: new_object_url %> </div> <% end %>
Version data entries
4 entries across 4 versions & 1 rubygems