Sha256: 40ee2c2b5fe62f4259ddd59b4369ac2e9ba1719b3b96da4c45239078c5b8fab6
Contents?: true
Size: 778 Bytes
Versions: 11
Compression:
Stored size: 778 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 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
11 entries across 11 versions & 1 rubygems