Sha256: 48bf0ff713373d268becb04f05f260f99af14ba964e68c4f99b565436e3c7a13

Contents?: true

Size: 674 Bytes

Versions: 6

Compression:

Stored size: 674 Bytes

Contents

<div class='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>
    <th><%= t("name") %></th>
    <th><%= t("action") %></th>
  </thead>
  <tbody>
    <% @shipping_categories.each do |shipping_category|%>
    <tr id="<%= dom_id shipping_category %>">
      <td width="350px"><%= shipping_category.name %></td>
      <td>
      	<%= link_to_edit shipping_category %> &nbsp;
      	<%= link_to_delete shipping_category %>
      </td>
    </tr>
    <% end %>
  </tbody>
</table>

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
spree-enriquez-0.9.4 app/views/admin/shipping_categories/index.html.erb
spree-0.9.4 app/views/admin/shipping_categories/index.html.erb
spree-0.9.3 app/views/admin/shipping_categories/index.html.erb
spree-0.9.2 app/views/admin/shipping_categories/index.html.erb
spree-0.9.1 app/views/admin/shipping_categories/index.html.erb
spree-0.9.0 app/views/admin/shipping_categories/index.html.erb