Files
sx-fc/app/views/settings/tax_profiles/show.html.erb
2017-10-13 15:53:34 +06:30

30 lines
596 B
Plaintext

<p id="notice"><%= notice %></p>
<p>
<strong>Name:</strong>
<%= @settings_tax_profile.name %>
</p>
<p>
<strong>Rate:</strong>
<%= @settings_tax_profile.rate %>
</p>
<p>
<strong>Inclusive:</strong>
<%= @settings_tax_profile.inclusive %>
</p>
<p>
<strong>Order by:</strong>
<%= @settings_tax_profile.order_by %>
</p>
<p>
<strong>Created by:</strong>
<%= @settings_tax_profile.created_by %>
</p>
<%= link_to t("views.btn.edit"), edit_settings_tax_profile_path(@settings_tax_profile) %> |
<%= link_to t('.new', :default => t("views.btn.new")), settings_tax_profiles_path %>