{% extends "base.html" %} {% block main %}

Overview for last {{ months }} months

Incoming

{% if tag_sum_in %} {% for tag,data in tag_sum_in.items() %} {% endfor %}
Tag Sum ⌀/Month
{{ tag.name }} {{ data["sum"] }} € {{ data["monthly"] }} €
SUMME {{ monthly_sum["in"] }} €
{% else %} No tagged transactions for this month. {% endif %}

Outgoing

{% if tag_sum_out %} {% for tag,data in tag_sum_out.items() %} {% endfor %}
Tag Sum ⌀/Month
{{ tag.name }} {{ data["sum"] }} € {{ data["monthly"] }} €
SUMME {{ monthly_sum["out"] }} €
{% else %} No tagged transactions for this month. {% endif %}
{% endblock %} {% block script %} {% endblock %}