15 lines
321 B
Plaintext
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 %>
|