Sha256: 767a0bb31406a1e8775cda68f6cf8325503ecd3fd965ccb7415b7941b40fa5e8
Contents?: true
Size: 994 Bytes
Versions: 9
Compression:
Stored size: 994 Bytes
Contents
<%= render :partial => 'spree/admin/shared/configuration_menu' %> <% content_for :page_title do %> <%= t(:shipping_categories) %> <% end %> <% content_for :page_actions do %> <li> <%= button_link_to t(:new_shipping_category), new_object_url, :icon => 'icon-plus' %> </li> <% end %> <table class="index"> <colgroup> <col style="width: 85%"> <col style="width: 15%"> </colgroup> <thead> <tr data-hook="categories_header"> <th><%= 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" class="<%= cycle('odd', 'even')%>"> <td style="width:350px;"><%= shipping_category.name %></td> <td class="actions"> <%= link_to_edit shipping_category, :no_text => true %> <%= link_to_delete shipping_category, :no_text => true %> </td> </tr> <% end %> </tbody> </table>
Version data entries
9 entries across 9 versions & 2 rubygems