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) }} €
Kontostand letzte 30 Tage
Transaktionen in dieser Woche
{% if transactions %}
| Datum |
Name |
Kategorie |
Betrag |
{% for t in transactions|reverse %}
|
{{ t.date }}
|
{{ t.applicant_name }}
|
{{ t.category }}
|
{{ "%.2f"|format(t.amount) }} €
|
{% endfor %}
{% else %}
Keine Transaktionen vorhanden.
{% endif %}
Unbekannte Buchungen
{% if unknown_transactions %}
{{ unknown_transactions|length }}
Buchungen offen
{% for t in unknown_transactions %}
|
{{ t.date }}
|
{{ t.applicant_name }}
|
{{ "%.2f"|format(t.amount) }} €
|
{% endfor %}
{% else %}
Keine unbekannten Buchungen.
{% endif %}