{% 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") }}{{ _("Spent") }}
{{ stat.member.name }} {{ stat.paid|currency }} {{ stat.spent|currency }}

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

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