Sha256: 392282370af593297e14e1caef388181a05d14088193ba7434c9c48e854b6f80

Contents?: true

Size: 1.69 KB

Versions: 10

Compression:

Stored size: 1.69 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 actions-2 text-right">
            <%= 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 %>
        </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

10 entries across 10 versions & 1 rubygems

Version Path
spree_backend-4.2.7 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.2.6 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.2.5 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.2.4 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.2.3.1 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.2.3 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.2.2 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.2.1 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.2.0 app/views/spree/admin/tax_categories/index.html.erb
spree_backend-4.2.0.rc5 app/views/spree/admin/tax_categories/index.html.erb