Files
sx-fc/app/views/settings/tax_profiles/_form.html.erb
2017-04-18 13:01:05 +06:30

15 lines
321 B
Plaintext

<%= simple_form_for([:settings, @settings_tax_profile ]) do |f| %>
<%= f.error_notification %>
<div class="form-inputs">
<%= f.input :name %>
<%= f.input :rate %>
<%= f.input :inclusive %>
<%= f.input :order_by %>
</div>
<div class="form-actions">
<%= f.button :submit %>
</div>
<% end %>