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