Sha256: 71d77bc98ad5ff23893b3c97fa4af487d254c13c6e52aec7ea6a2369abc2cd6a

Contents?: true

Size: 1.57 KB

Versions: 27

Compression:

Stored size: 1.57 KB

Contents

<%= render 'spree/admin/shared/configuration_menu' %>

<% content_for :page_title do %>
  <%= Spree.t(:shipping_categories) %>
<% end %>

<% content_for :page_actions do %>
  <% if can?(:create, Spree::ShippingCategory) %>
    <li>
      <%= button_link_to Spree.t(:new_shipping_category), new_object_url, :icon => 'plus' %>
    </li>
  <% end %>
<% end %>

<% if @shipping_categories.any? %>
<table class="index">
  <colgroup>
    <col style="width: 85%">
    <col style="width: 15%">
  </colgroup>
  <thead>
    <tr data-hook="categories_header">
      <th><%= Spree.t(:name) %></th>
      <th class="actions"></th>
    </tr>
  </thead>
  <tbody>
    <% @shipping_categories.each do |shipping_category|%>
    <tr id="<%= spree_dom_id shipping_category %>" data-hook="category_row" class="<%= cycle('odd', 'even')%>">
      <td class="align-center" style="width:350px;"><%= shipping_category.name %></td>
      <td class="actions">
        <% if can?(:udpate, shipping_category) %>
          <%= link_to_edit shipping_category, :no_text => true %>
        <% end %>

        <% if can?(:destroy, shipping_category) %>
          <%= link_to_delete shipping_category, :no_text => true %>
        <% end %>
      </td>
    </tr>
    <% end %>
  </tbody>
</table>
<% else %>
  <div class="alpha twelve columns no-objects-found">
    <%= Spree.t(:no_resource_found, resource: I18n.t(:other, scope: 'activerecord.models.spree/shipping_category')) %>
    <% if can?(:create, Spree::ShippingCategory) %>
      <%= link_to Spree.t(:add_one), spree.new_admin_shipping_category_path %>!
    <% end %>
  </div>
<% end %>

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
solidus_backend-1.0.2 app/views/spree/admin/shipping_categories/index.html.erb
solidus_backend-1.0.1 app/views/spree/admin/shipping_categories/index.html.erb
solidus_backend-1.0.0 app/views/spree/admin/shipping_categories/index.html.erb
solidus_backend-1.0.0.rc2 app/views/spree/admin/shipping_categories/index.html.erb
solidus_backend-1.0.0.rc1 app/views/spree/admin/shipping_categories/index.html.erb
solidus_backend-1.0.0.pre3 app/views/spree/admin/shipping_categories/index.html.erb
solidus_backend-1.0.0.pre2 app/views/spree/admin/shipping_categories/index.html.erb