Sha256: 08a9a2327db6f0d399710a994528923b7f51b0798a38716473a8091ca8f751df

Contents?: true

Size: 1.79 KB

Versions: 14

Compression:

Stored size: 1.79 KB

Contents

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

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

<% if @tax_rates.any? %>
  <table class="table">
    <thead>
      <tr data-hook="rate_header">
        <th><%= Spree.t(:zone) %></th>
        <th><%= Spree.t(:name) %></th>
        <th><%= Spree.t(:category) %></th>
        <th><%= Spree.t(:amount) %></th>
        <th><%= Spree.t(:included_in_price) %></th>
        <th><%= Spree.t(:show_rate_in_label) %></th>
        <th><%= Spree.t(:calculator) %></th>
        <th></th>
      </tr>
    </thead>
    <tbody>
      <% @tax_rates.each do |tax_rate|%>
      <tr id="<%= spree_dom_id tax_rate %>" data-hook="rate_row">
        <td><%=tax_rate.zone.try(:name) || Spree.t(:not_available) %></td>
        <td><%=tax_rate.name %></td>
        <td><%=tax_rate.tax_category.try(:name) || Spree.t(:not_available) %></td>
        <td><%=tax_rate.amount %></td>
        <td><%=tax_rate.included_in_price? ? Spree.t(:say_yes) : Spree.t(:say_no) %></td>
        <td><%=tax_rate.show_rate_in_label? ? Spree.t(:say_yes) : Spree.t(:say_no) %></td>
        <td><%=tax_rate.calculator.to_s %></td>
        <td class="actions actions-2 text-right">
          <%= link_to_edit(tax_rate, no_text: true) if can? :edit, tax_rate %>
          <%= link_to_delete(tax_rate, no_text: true) if can? :delete, tax_rate %>
        </td>
      </tr>
      <% end %>
    </tbody>
  </table>
<% else %>
  <div class="alert alert-info no-objects-found">
    <%= Spree.t(:no_resource_found, resource: plural_resource_name(Spree::TaxRate)) %>,
    <%= link_to(Spree.t(:add_one), new_object_url) if can? :create, Spree::TaxRate %>!
  </div>
<% end %>

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
spree_backend-3.0.10 app/views/spree/admin/tax_rates/index.html.erb
spree_backend-3.0.9 app/views/spree/admin/tax_rates/index.html.erb
spree_backend-3.0.8 app/views/spree/admin/tax_rates/index.html.erb
spree_backend-3.0.7 app/views/spree/admin/tax_rates/index.html.erb
spree_backend-3.0.6.1 app/views/spree/admin/tax_rates/index.html.erb
spree_backend-3.0.6 app/views/spree/admin/tax_rates/index.html.erb
spree_backend-3.0.5 app/views/spree/admin/tax_rates/index.html.erb
spree_backend-3.0.4 app/views/spree/admin/tax_rates/index.html.erb
spree_backend-3.0.3 app/views/spree/admin/tax_rates/index.html.erb
spree_backend-3.0.2 app/views/spree/admin/tax_rates/index.html.erb
spree_backend-3.0.1 app/views/spree/admin/tax_rates/index.html.erb
spree_backend-3.0.0 app/views/spree/admin/tax_rates/index.html.erb
spree_backend-3.0.0.rc4 app/views/spree/admin/tax_rates/index.html.erb
spree_backend-3.0.0.rc3 app/views/spree/admin/tax_rates/index.html.erb