mirror of
https://github.com/internetee/registry.git
synced 2025-08-03 16:32:04 +02:00
29 lines
1,006 B
Text
29 lines
1,006 B
Text
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<%= t '.header' %>
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
<dl class="dl-horizontal">
|
|
<dt><%= Registrar.human_attribute_name :vat_no %></dt>
|
|
<dd><%= registrar.vat_no %></dd>
|
|
|
|
<dt><%= Registrar.human_attribute_name :vat_rate %></dt>
|
|
<dd><%= number_to_percentage(registrar.vat_rate, precision: 1) %></dd>
|
|
|
|
<dt><%= Registrar.human_attribute_name :accounting_customer_code %></dt>
|
|
<dd><%= registrar.accounting_customer_code %></dd>
|
|
|
|
<dt><%= Registrar.human_attribute_name :billing_email %></dt>
|
|
<dd>
|
|
<%= registrar.billing_email %>
|
|
</dd>
|
|
|
|
<dt><%= Registrar.human_attribute_name :reference_no %></dt>
|
|
<dd><%= registrar.reference_no %></dd>
|
|
|
|
<dt><%= Registrar.human_attribute_name :iban %></dt>
|
|
<dd><%= registrar.iban %></dd>
|
|
</dl>
|
|
</div>
|
|
</div>
|