mirror of
https://github.com/internetee/registry.git
synced 2025-07-25 12:08:27 +02:00
Added registrant index view local currency support #2781
This commit is contained in:
parent
5b01c4d39b
commit
47669f184b
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
= render 'shared/title', name: t(:your_account)
|
||||
|
||||
= t(:your_current_account_balance_is,
|
||||
balance: current_user.registrar.cash_account.balance,
|
||||
balance: currency(current_user.registrar.cash_account.balance),
|
||||
currency: current_user.registrar.cash_account.currency)
|
||||
|
||||
%h1= t(:invoices)
|
||||
|
@ -68,7 +68,7 @@
|
|||
%td{class: 'text-danger'}= t(:unpaid)
|
||||
|
||||
%td= l(x.due_date, format: :date_long)
|
||||
%td= x.sum
|
||||
%td= currency(x.sum)
|
||||
.row
|
||||
.col-md-12
|
||||
= paginate @invoices
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue