aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates/list_bills.html
diff options
context:
space:
mode:
authorGlandos <bugs-github@antipoul.fr>2020-05-21 21:31:24 +0200
committerGitHub <noreply@github.com>2020-05-21 21:31:24 +0200
commit23ed467d37a0b1949c9cd4ef5616058d5448e030 (patch)
tree4fef765e1c10c0cb756739956659d5d9dde912d8 /ihatemoney/templates/list_bills.html
parentdf6ffc7d86b7334b2a3c309318cc8020cd8e781a (diff)
downloadihatemoney-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.html2
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 %}