diff --git a/ihatemoney/templates/dashboard.html b/ihatemoney/templates/dashboard.html index b1220bd4..807e3e2f 100644 --- a/ihatemoney/templates/dashboard.html +++ b/ihatemoney/templates/dashboard.html @@ -4,7 +4,7 @@
{{ _("Project") }} | {{ _("Number of members") }} | {{ _("Number of bills") }} | {{_("Newest bill")}} | {{_("Oldest bill")}} | {{_("Actions")}} | |
---|---|---|---|---|---|---|
{{ project.name }} | {{ project.members | count }} | {{ project.get_bills().count() }} | {% if project.has_bills() %}{{ project.get_bills().all()[0].date }} | diff --git a/ihatemoney/templates/settle_bills.html b/ihatemoney/templates/settle_bills.html index b67a9b85..7ec5e290 100644 --- a/ihatemoney/templates/settle_bills.html +++ b/ihatemoney/templates/settle_bills.html @@ -22,7 +22,7 @@|||
{{ _("Who pays?") }} | {{ _("To whom?") }} | {{ _("How much?") }} | ||||
{{ bill.ower }} | {{ bill.receiver }} | {{ "%0.2f"|format(bill.amount) }} | diff --git a/ihatemoney/templates/statistics.html b/ihatemoney/templates/statistics.html index 061c6299..ae1c80ea 100644 --- a/ihatemoney/templates/statistics.html +++ b/ihatemoney/templates/statistics.html @@ -22,7 +22,7 @@||||
{{ _("Who?") }} | {{ _("Paid") }} | {{ _("Spent") }} | {{ _("Balance") }} | |||
{{ member.name }} | {{ "%0.2f"|format(paid[member.id]) }} | {{ "%0.2f"|format(spent[member.id]) }} |