Sha256: 980310a49ed23c4970460a2e6a9ffc87213918c89638c6930c14e9d64c3f325c
Contents?: true
Size: 779 Bytes
Versions: 8
Compression:
Stored size: 779 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
8 entries across 8 versions & 1 rubygems