{% extends "sidebar_table_layout.html" %}
{% block sidebar %}
{{ balance_table(show_weight=False, show_header=True) }}
{% endblock %}
{% block content %}
{{ _("Who?") }} | {{ _("Paid") }} | {{ _("Spent") }} |
{% for stat in members_stats|sort(attribute='member.name') %}
{{ stat.member.name }} |
{{ stat.paid|currency }} |
{{ stat.spent|currency }} |
{% endfor %}
{{ _("Expenses by Month") }}
{{ _("Period") }} | {{ _("Spent") }} |
{% for month in months %}
{{ _(month.strftime("%B")) }} {{ month.year }} |
{{ monthly_stats[month.year][month.month]|currency }} |
{% endfor %}
{% endblock %}