{% extends "base.html" %} {% block title %}{{ _("Upcoming") }} · Wealth Dashboard{% endblock %} {% block heading %}{{ _("Upcoming") }}{% endblock %} {% block lede %}
{{ _("Today's cash, carried forward through what is known to be coming: the bills as declared, the subscriptions the app has found, the salary as the newest payslip had it. Where the balance gets lowest, and the day it would cross zero — before it does, not after.") }}
{% endblock %} {% block content %} {% set ccy = data.base_currency %} {% set kind_labels = {'bill': _("bill"), 'subscription': _("subscription"), 'income': _("income")} %}{{ _("Nothing is scheduled in this window. Declare a bill, or import a payslip, and the line starts moving.") }} {{ _("Bills →") }}
{% endif %}| {{ _("Date") }} | {{ _("What") }} | {{ _("Account") }} | {{ _("Amount") }} | {{ _("Balance after") }} |
|---|---|---|---|---|
| {{ d(i.date) }} | {{ i.name }} {{ kind_labels[i.kind] }} {% if i.overdue %}{{ _("missed — expected today") }}{% endif %} | {{ i.account or '—' }} | {{ '~ ' if i.estimate }}{{ money(i.amount, ccy) }} | {{ money(i.running, ccy) }} |
| {{ _("Account") }} | {{ _("Balance") }} | {{ _("As of") }} |
|---|---|---|
| {{ a.name }} | {{ money(a.balance, a.currency) }} | {{ d(a.as_of) if a.as_of else _("nothing reported yet") }} |
| {{ _("No cash account yet.") }} | ||
{{ _("Loan instalments count only when declared as a bill: the app knows what a loan costs, not which account pays it.") }}