Sha256: 79c0234e310d56cf8463afb6283a02694c626cb5be002f17d0ca805d00a1783b
Contents?: true
Size: 1.84 KB
Versions: 11
Compression:
Stored size: 1.84 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.svg' %> <% end if can? :create, Spree::TaxRate %> <% if @tax_rates.any? %> <div class="table-responsive"> <table class="table"> <thead> <tr data-hook="rate_header"> <th><%= Spree.t(:zone) %></th> <th><%= Spree.t(:name) %></th> <th><%= Spree.t(:tax_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><%= active_badge(tax_rate.included_in_price?) %></td> <td><%= active_badge(tax_rate.show_rate_in_label?) %></td> <td><%= tax_rate.calculator.to_s %></td> <td class="actions"> <span class="d-flex justify-content-end"> <%= 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 %> </span> </td> </tr> <% end %> </tbody> </table> </div> <% 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
11 entries across 11 versions & 1 rubygems