From 1f62f18154be9ffab31ce4b8d203bb8e1679e48b Mon Sep 17 00:00:00 2001 From: James Leong Date: Sat, 8 Feb 2020 14:17:02 -0800 Subject: Statistics view #323 Remove header and table column of 'Balance' in statistics view --- ihatemoney/templates/statistics.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'ihatemoney/templates/statistics.html') diff --git a/ihatemoney/templates/statistics.html b/ihatemoney/templates/statistics.html index 1b07a33..0cfe1f2 100644 --- a/ihatemoney/templates/statistics.html +++ b/ihatemoney/templates/statistics.html @@ -3,6 +3,10 @@ {% block sidebar %}
+ + + + {% for stat in members_stats| sort(attribute='member.name') %} @@ -18,14 +22,13 @@ {% block content %}
{{ _("Balance") }}
{{ stat.member.name }}
- + {% for stat in members_stats %} - {% endfor %} -- cgit v1.1
{{ _("Who?") }}{{ _("Paid") }}{{ _("Spent") }}{{ _("Balance") }}
{{ _("Who?") }}{{ _("Paid") }}{{ _("Spent") }}
{{ stat.member.name }} {{ "%0.2f"|format(stat.paid) }} {{ "%0.2f"|format(stat.spent) }}{{ "%0.2f"|format(stat.balance) }}