{% extends "base.html" %} {% block title %}{{ _("Transactions") }} · Wealth Dashboard{% endblock %} {% block heading %}{{ _("Transactions") }}{% endblock %} {% block lede %}
{{ _("Changing a category here also makes a rule from the merchant, and applies it to every transaction that matches. To correct a single row without a rule, use the Categorize page and clear “remember as”.") }}
{% endblock %} {% block content %}| {{ _("Date") }} | {{ _("Description") }} | {{ _("Account") }} | {{ _("Category") }} | {% if persons %}{{ _("Whose") }}{% endif %} | {{ _("Amount") }} |
|---|---|---|---|---|---|
| {{ d(t.txn_date) }} | {{ t.description[:80] }} {% if t.counterparty %}{{ t.counterparty }}{% endif %} | {{ t.account_name }} | {% if t.amount < 0 and t.kind not in ('buy', 'sell', 'transfer') and persons %} {% endif %} | {{ money(t.amount, t.currency) }} |
{{ _("Nothing matches those filters.") }}
{% endif %}