Sha256: 086bf7b73399c0ed4adfb3d4ec5ab73d6aa8d8608954e953468d9598aafdf8ab
Contents?: true
Size: 771 Bytes
Versions: 2
Compression:
Stored size: 771 Bytes
Contents
<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="<%= dom_id shipping_category %>" data-hook="category_row"> <td 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spree_core-0.70.0.rc2 | app/views/admin/shipping_categories/index.html.erb |
spree_core-0.70.RC1 | app/views/admin/shipping_categories/index.html.erb |