diff options
| author | Glandos <bugs-github@antipoul.fr> | 2020-05-21 21:31:24 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-21 21:31:24 +0200 |
| commit | 23ed467d37a0b1949c9cd4ef5616058d5448e030 (patch) | |
| tree | 4fef765e1c10c0cb756739956659d5d9dde912d8 /ihatemoney/templates/list_bills.html | |
| parent | df6ffc7d86b7334b2a3c309318cc8020cd8e781a (diff) | |
| download | ihatemoney-mirror-23ed467d37a0b1949c9cd4ef5616058d5448e030.zip ihatemoney-mirror-23ed467d37a0b1949c9cd4ef5616058d5448e030.tar.gz ihatemoney-mirror-23ed467d37a0b1949c9cd4ef5616058d5448e030.tar.bz2 | |
Replace currencyformat_nc with currency filter (#625)
Diffstat (limited to 'ihatemoney/templates/list_bills.html')
| -rw-r--r-- | ihatemoney/templates/list_bills.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ihatemoney/templates/list_bills.html b/ihatemoney/templates/list_bills.html index 1f4235b..487e70e 100644 --- a/ihatemoney/templates/list_bills.html +++ b/ihatemoney/templates/list_bills.html @@ -1,7 +1,7 @@ {% extends "sidebar_table_layout.html" %} {%- macro bill_amount(bill, currency=bill.original_currency, amount=bill.amount) %} - {{ amount|currencyformat_nc(currency) }} ({{ _("%(amount)s each", amount=bill.pay_each_default(amount)|currencyformat_nc(currency)) }}) + {{ amount|currency(currency) }} ({{ _("%(amount)s each", amount=bill.pay_each_default(amount)|currency(currency)) }}) {% endmacro -%} {% block title %} - {{ g.project.name }}{% endblock %} |
