ING Finanzen
Kontobewegungen und Auswertungen

KW{{ week }}

Kontostand

{% if balance is not none %} {{ "%.2f"|format(balance) }} € {% else %} n/v {% endif %}

Einnahmen: {{ "%.2f"|format(total_income) }} €

Ausgaben: {{ "%.2f"|format(total_expenses) }} €

Saldo: {{ "%.2f"|format(total_saldo) }} €

Kontostandvergleich

Transaktionen in dieser Woche

{% if transactions %}
{% for t in transactions|reverse %} {% endfor %}
Datum Name Kategorie Betrag
{{ t.date }} {{ t.applicant_name }} {{ t.category }} {{ "%.2f"|format(t.amount) }} €
{% else %}

Keine Transaktionen vorhanden.

{% endif %}

Unbekannte Buchungen

{% if unknown_transactions %}

{{ unknown_transactions|length }} Buchungen offen

{% for t in unknown_transactions %} {% endfor %}
{{ t.date }} {{ t.applicant_name }} {{ "%.2f"|format(t.amount) }} €

{% else %}

Keine unbekannten Buchungen.

{% endif %}