Sha256: 5ea21246a0bb0cfee21e3064a7cde378fcf1d4eb078486d89b51768669085f4b

Contents?: true

Size: 1.75 KB

Versions: 11

Compression:

Stored size: 1.75 KB

Contents

<% content_for :page_title do %>
  <%= plural_resource_name(Spree::TaxCategory) %>
<% end %>

<% content_for :page_actions do %>
  <%= button_link_to Spree.t(:new_tax_category), new_object_url, class: "btn-success", icon: 'add.svg', id: 'admin_new_tax_categories_link' %>
<% end if can? :create, Spree::TaxCategory %>

<% if @tax_categories.any? %>
<div class="table-responsive">
  <table class="table" id='listing_tax_categories' data-hook>
    <thead>
      <tr data-hook="tax_header">
        <th><%= Spree.t(:name) %></th>
        <th><%= Spree.t(:tax_code) %></th>
        <th><%= Spree.t(:description) %></th>
        <th><%= Spree.t(:default) %></th>
        <th></th>
      </tr>
    </thead>
    <tbody>
      <% @tax_categories.each do |tax_category|
           @edit_url = edit_admin_tax_category_path(tax_category)
           @delete_url = admin_tax_category_path(tax_category) %>

        <tr id="<%= spree_dom_id tax_category %>" data-hook="tax_row">
          <td><%= tax_category.name %></td>
          <td><%= tax_category.tax_code %></td>
          <td><%= tax_category.description %></td>
          <td><%= active_badge(tax_category.is_default?) %></td>
          <td class="actions">
            <span class="d-flex justify-content-end">
              <%= link_to_edit(tax_category, no_text: true) if can? :edit, tax_category %>
              <%= link_to_delete(tax_category, no_text: true) if can? :delete, tax_category %>
            </span>
        </tr>
      <% end %>
    </tbody>
  </table>
</div>
<% else %>
  <div class="alert alert-info no-objects-found">
    <%= Spree.t(:no_resource_found, resource: plural_resource_name(Spree::TaxCategory)) %>,
    <%= link_to(Spree.t(:add_one), new_object_url) if can? :create, Spree::TaxCategory %>!
  </div>
<% end %>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
spree_backend-4.3.3 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.3.2 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.4.1 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.4.0 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.4.0.rc2 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.3.1 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.4.0.rc1 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.3.0 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.3.0.rc3 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.3.0.rc2 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.3.0.rc1 app/views/spree/admin/tax_categories/index.html.erb