Sha256: eb66cd970411ce783ab473ee329f06ad0ccc033e808ad4dacbc6975d8de3d82e

Contents?: true

Size: 1.99 KB

Versions: 16

Compression:

Stored size: 1.99 KB

Contents

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

<% admin_breadcrumb(t('spree.settings')) %>
<% admin_breadcrumb(t('spree.admin.tab.checkout')) %>
<% admin_breadcrumb(plural_resource_name(Spree::StoreCreditReason)) %>

<% content_for :page_actions do %>
  <ul class='actions inline-menu'>
    <% if can?(:create, Spree::StoreCreditReason) %>
      <li>
        <%= link_to t('spree.new_store_credit_reason'), new_object_url, id: 'admin_new_named_type', class: 'btn btn-primary' %>
      </li>
    <% end %>
  </ul>
<% end %>

<% if @collection.any? %>
  <table class='index' id='listing_store_credit_reasons'>
    <colgroup>
      <col style='width: 65%' />
      <col style='width: 20%' />
      <col style='width: 15%' />
    </colgroup>
    <thead>
      <tr data-hook='store_credit_reasons_header'>
        <th><%= Spree::StoreCreditReason.human_attribute_name(:name) %></th>
        <th><%= Spree::StoreCreditReason.human_attribute_name(:state) %></th>
        <th class='actions'></th>
      </tr>
    </thead>
    <tbody>
      <% @collection.each do |store_credit_reason| %>
        <tr id='<%= spree_dom_id store_credit_reason %>' data-hook='store_credit_reason_row'>
          <td>
            <%= store_credit_reason.name %>
          </td>
          <td>
            <span class="pill pill-<%= store_credit_reason.active? ? 'active' : 'inactive' %>">
              <%= t(store_credit_reason.active? ? :active : :inactive, scope: 'spree') %>
            </span>
          </td>
          <td class='actions'>
            <%= link_to_edit store_credit_reason, no_text: true %>
            <% if can?(:destroy, store_credit_reason) %>
              <%= link_to_delete store_credit_reason, no_text: true %>
            <% end %>
          </td>
        </tr>
      <% end %>
    </tbody>
  </table>
<% else %>
  <div class='no-objects-found'>
    <%= render 'spree/admin/shared/no_objects_found',
                 resource: Spree::StoreCreditReason,
                 new_resource_url: new_object_url %>
  </div>
<% end %>

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
solidus_backend-3.3.4 app/views/spree/admin/store_credit_reasons/index.html.erb
solidus_backend-3.2.9 app/views/spree/admin/store_credit_reasons/index.html.erb
solidus_backend-3.2.8 app/views/spree/admin/store_credit_reasons/index.html.erb
solidus_backend-3.3.3 app/views/spree/admin/store_credit_reasons/index.html.erb
solidus_backend-3.2.7 app/views/spree/admin/store_credit_reasons/index.html.erb
solidus_backend-3.3.2 app/views/spree/admin/store_credit_reasons/index.html.erb
solidus_backend-3.3.1 app/views/spree/admin/store_credit_reasons/index.html.erb
solidus_backend-3.2.6 app/views/spree/admin/store_credit_reasons/index.html.erb
solidus_backend-3.3.0 app/views/spree/admin/store_credit_reasons/index.html.erb
solidus_backend-3.2.5 app/views/spree/admin/store_credit_reasons/index.html.erb
solidus_backend-3.2.4 app/views/spree/admin/store_credit_reasons/index.html.erb
solidus_backend-3.2.3 app/views/spree/admin/store_credit_reasons/index.html.erb
solidus_backend-3.2.2 app/views/spree/admin/store_credit_reasons/index.html.erb
solidus_backend-3.2.1 app/views/spree/admin/store_credit_reasons/index.html.erb
solidus_backend-3.2.0 app/views/spree/admin/store_credit_reasons/index.html.erb
solidus_backend-3.2.0.alpha app/views/spree/admin/store_credit_reasons/index.html.erb