Sha256: 3b0d141ee63d737e52605076a07b880cc2e6605cc63e67601bcd9f4c8c770658
Contents?: true
Size: 851 Bytes
Versions: 15
Compression:
Stored size: 851 Bytes
Contents
<%= render :partial => 'spree/admin/shared/configuration_menu' %> <div class="toolbar" data-hook="toolbar"> <ul class="actions"> <li> <%= button_link_to t(:new_shipping_category), new_object_url, :icon => 'add' %> </li> </ul> <br class="clear" /> </div> <h1><%= t(:shipping_categories) %></h1> <table class="index"> <thead> <tr data-hook="categories_header"> <th><%= t(:name) %></th> <th><%= t(:action) %></th> </tr> </thead> <tbody> <% @shipping_categories.each do |shipping_category|%> <tr id="<%= spree_dom_id shipping_category %>" data-hook="category_row"> <td style="width:350px;"><%= shipping_category.name %></td> <td> <%= link_to_edit shipping_category %> <%= link_to_delete shipping_category %> </td> </tr> <% end %> </tbody> </table>
Version data entries
15 entries across 15 versions & 1 rubygems