{% extends "base.html" %} {% block title %}{{ _("Who spent") }} · Wealth Dashboard{% endblock %} {% block heading %}{{ _("Who spent") }}{% endblock %} {% block lede %}
{{ _("The household's spending split between its people. A row of spending belongs to one of you, or to the household — shared, halved — or to nobody yet; what nobody has claimed sits in its own bucket rather than being quietly absorbed. Say whose a row is on the Transactions page, and it becomes a rule for the next one like it.") }}
{% endblock %} {% block content %} {% set t = data.totals %}{{ _f("The month before, {month}: {total} in all", month=mon(data.previous.month), total=money(data.previous.totals.total, data.base_currency)) }}{% for p in data.previous.totals.people %} · {{ p.name }} {{ money(p.total, data.base_currency) }}{% endfor %}.
{% endif %}| {{ _("Category") }} | {% for p in t.people %}{{ p.name }} | {% endfor %}{{ _("Shared") }} | {{ _("Nobody yet") }} | {{ _("Total") }} |
|---|---|---|---|---|
| {{ c.label }} | {% for p in c.people %}{{ money(p.direct, data.base_currency) if p.direct else '—' }} | {% endfor %}{{ money(c.shared, data.base_currency) if c.shared else '—' }} | {{ money(c.unassigned, data.base_currency) if c.unassigned else '—' }} | {{ money(c.total, data.base_currency) }} |
{{ _("No spending in this window.") }}