Sha256: 75d1155d8dbc84feaa07b0ddf2bd2fb40371f2bf333930425a8cf85403396eb4

Contents?: true

Size: 1.67 KB

Versions: 5

Compression:

Stored size: 1.67 KB

Contents

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

<% admin_breadcrumb(root_tab) %>
<% admin_breadcrumb(sub_tab) %>
<% admin_breadcrumb(page_title) %>


<% content_for :page_actions do %>
  <ul class="actions inline-menu">
    <% if can?(:create, Spree::ReturnReason) %>
      <li>
        <%= button_link_to new_button_text, new_object_url, { id: 'admin_new_named_type' } %>
      </li>
    <% end %>
  </ul>
<% end %>

<% if @collection.any? %>
  <table class="index" id='listing_named_types' data-hook>
    <colgroup>
      <col style="width: 65%" />
      <col style="width: 20%" />
      <col style="width: 15%" />
    </colgroup>
    <thead>
      <tr data-hook="named_types_header">
        <th><%= Spree.t(:name) %></th>
        <th><%= Spree.t(:state) %></th>
        <th class="actions"></th>
      </tr>
    </thead>
    <tbody>
      <% @collection.each do |named_type| %>
        <tr id="<%= spree_dom_id named_type %>" data-hook="named_type_row">
          <td>
            <%= named_type.name %>
          </td>
          <td>
            <span class="pill pill-<%= named_type.active? ? 'active' : 'inactive' %>">
              <%= Spree.t(named_type.active? ? :active : :inactive) %>
            </span>
          </td>
          <td class="actions">
            <% if named_type.mutable? && can?(:update, named_type) %>
              <%= link_to_edit named_type, no_text: true %>
            <% end %>
          </td>
        </tr>
      <% end %>
    </tbody>
  </table>
<% else %>
  <div class="col-9 no-objects-found">
    <%= render 'spree/admin/shared/no_objects_found',
                 resource: resource,
                 new_resource_url: new_object_url %>
  </div>
<% end %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
solidus_backend-2.4.2 app/views/spree/admin/shared/named_types/_index.html.erb
solidus_backend-2.4.1 app/views/spree/admin/shared/named_types/_index.html.erb
solidus_backend-2.4.0 app/views/spree/admin/shared/named_types/_index.html.erb
solidus_backend-2.4.0.rc1 app/views/spree/admin/shared/named_types/_index.html.erb
solidus_backend-2.4.0.beta1 app/views/spree/admin/shared/named_types/_index.html.erb