{% 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 tag in tags %} {% endfor %} {% for month in months %} {% for tag in tags %} {% if tag.name in tags_monthly_stats[month.year][month.month] %} {% else %} {% endif %} {% endfor %} {% endfor %}
{{ _("Period") }} {{ _("Spent") }}#{{ tag.name }}
{{ month|dateformat("MMMM yyyy") }} {{ monthly_stats[month.year][month.month]|currency }}{{ tags_monthly_stats[month.year][month.month][tag.name]|currency }} -
{% endblock %}