diff --git a/ihatemoney/templates/statistics.html b/ihatemoney/templates/statistics.html index e367c747..53e6af95 100644 --- a/ihatemoney/templates/statistics.html +++ b/ihatemoney/templates/statistics.html @@ -1,40 +1,48 @@ -{% extends "sidebar_table_layout.html" %} - -{% block sidebar %} -
- {{ balance_table(show_weight=False, show_header=True) }} -
-{% endblock %} - - -{% block content %} -
- - - - {% for stat in members_stats|sort(attribute='member.name') %} - - - - - - - - {% endfor %} - -
{{ _("Who?") }}{{ _("Paid") }}{{ _("Expenses") }}{{ _("Transferred") }}{{ _("Received") }}
{{ stat.member.name }}{{ stat.paid|currency }}{{ stat.spent|currency }}{{ stat.transferred|currency }}{{ stat.received|currency }}
-

{{ _("Expenses by month") }}

- - - - {% for month in months %} - - - - - {% endfor %} - -
{{ _("Period") }}{{ _("Expenses") }}
{{ month|dateformat("MMMM yyyy") }}{{ monthly_stats[month.year][month.month]|currency }}
-
+{% extends "sidebar_table_layout.html" %} {% block sidebar %} +
+ {{ balance_table(show_weight=False, show_header=True) }} +
+{% endblock %} {% block content %} +
+ + + + + + + + + + + + {% for stat in members_stats|sort(attribute='member.name') %} + + + + + + + + {% endfor %} + +
{{ _("Who?") }}{{ _("Paid") }}{{ _("Expenses") }}{{ _("Transferred") }}{{ _("Received") }}
{{ stat.member.name }}{{ stat.paid|currency }}{{ stat.spent|currency }}{{ stat.transferred|currency }}{{ stat.received|currency }}
+

{{ _("Expenses by month") }}

+ + + + + + + + + {% for month in months %} + + + + + {% endfor %} + +
{{ _("Period") }}{{ _("Expenses") }}
{{ month|dateformat("MMMM yyyy") }}{{ monthly_stats[month.year][month.month]|currency }}
+
{% endblock %}