{% extends "sidebar_table_layout.html" %} {% block sidebar %}
{{ balance_table(show_weight=False, show_header=True) }}
{% endblock %} {% block content %}
{{ _("Who?") }} |
{{ _("Paid") }} |
{{ _("Expenses") }} |
{{ _("Direct transfer") }} |
{{ _("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 %}