{% 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 %}
{% if tags %}
{% endif %} {% if q or category or account_id or kind or tag %} {{ _("Clear") }} {% endif %}

{{ _n(matched, "{n} transaction", "{n} transactions") }}

{{ _f("net {amount}", amount=money(total, base_currency)) }}{% if matched > rows|length %} · {{ _f("showing the {n} most recent", n=rows|length) }}{% endif %} · {{ _("Export as CSV") }}
{% for t in rows %} {% endfor %}
{{ _("Date") }}{{ _("Description") }}{{ _("Account") }} {{ _("Category") }}{{ _("Amount") }}
{{ d(t.txn_date) }} {{ t.description[:80] }} {% if t.counterparty %}{{ t.counterparty }}{% endif %}
{% for tg in (t.tags or '').split(',') if tg %}{{ tg }}{% endfor %}
{{ t.account_name }}
{{ money(t.amount, t.currency) }}
{% if not rows %}

{{ _("Nothing matches those filters.") }}

{% endif %}
{% endblock %}