Sha256: d2cf7e79413ff03f17be9f1a5f6f3a3290591ec2a8e865820ec75bcc2574cedc

Contents?: true

Size: 752 Bytes

Versions: 4

Compression:

Stored size: 752 Bytes

Contents

<table data-hook="tax_rates">
  <tr data-hook="zone">
    <td><%= f.label :zone, t(:zone) %></td>
    <td><%= f.collection_select(:zone_id, @available_zones, :id, :name) %></td>
  </tr>
  <tr data-hook="category">
    <td><%= f.label :tax_category_id, t(:tax_category) %></td>
    <td><%= f.collection_select(:tax_category_id, @available_categories,:id, :name) %></td>
  </tr>
  <tr data-hook="included">
    <td><%= f.label :included_in_price, t(:included_in_price) %></td>
    <td><%= f.check_box :included_in_price %></td>
  </tr>
  <tr data-hook="rate">
    <td><%= f.label :amount, t(:rate) %></td>
    <td><%= f.text_field :amount %></td>
  </tr>
</table>

<%= render :partial => 'spree/admin/shared/calculator_fields', :locals => { :f => f } %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
spree_core-1.1.2.rc1 app/views/spree/admin/tax_rates/_form.html.erb
spree_core-1.1.1 app/views/spree/admin/tax_rates/_form.html.erb
spree_core-1.1.0 app/views/spree/admin/tax_rates/_form.html.erb
spree_core-1.1.0.rc2 app/views/spree/admin/tax_rates/_form.html.erb