{% extends "base.html" %} {% block title %}Übersicht – Finanzberatung{% endblock %} {% block content %}

Übersicht

{% if projection and projection.below_threshold_date %}
Achtung: Prognostizierter Saldo unterschreitet den Schwellenwert am {{ projection.below_threshold_date.strftime('%d.%m.%Y') }}.
{% endif %}
Gesamtsaldo: {{ '%.2f'|format(total) }} €
{% for account, balance in balances %} {% else %} {% endfor %}
KontoBankSaldoAnker UmbenennenAnker pflegen
{{ account.bank }} {{ '%.2f'|format(balance) }} € {% if account.anchor_date is not none and account.anchor_balance is not none %} Anker: {{ '%.2f'|format(account.anchor_balance) }} € am {{ account.anchor_date.strftime('%d.%m.%Y') }} {% else %} kein Anker {% endif %}
Keine Konten angelegt.

Nächste anstehende Posten (30 Tage)

{% for item in upcoming %} {% else %} {% endfor %}
DatumBezeichnungBetrag
{{ item.date.strftime('%d.%m.%Y') }} {{ item.name }} {{ '%.2f'|format(item.amount) }} €
Keine anstehenden Posten.

Grafana-Dashboard

Kein Diagramm sichtbar? Einmal in Grafana anmelden (gleiches Passwort wie hier).

{% endblock %}