{% extends 'onlineanywhere_base.html' %} {% block content %} FILTERED DATES
Type: {{transaction_type}}
Conto: {{conto}}
year: {{year}}
month: {{month}}

{{transaction_type}}

Total Value of {{transaction_type}}: {{tot_val_of_planned_expenses}}
Average Value of {{transaction_type}}: {{planned_expenses_average}}

{{transaction_type}} per conto:
{% for key, value in planned_expenses_per_conto.items() %} {% if value != 0 %}
{{key}}: {{value}}
{% endif %} {% endfor %}
{{transaction_type}} per category:
{% for key, value in planned_expenses_per_category.items() %} {% if value != 0 %}
{{key}}: {{value}}
{% endif %} {% endfor %}

{% endblock %}