{% extends "base.html" %} {% block title %}Transaction Review{% endblock %} {% block body %}

Transaction Review

Imported statement lines. Choose an account (and dimensions) to post a balanced journal entry against the bank/card account.

{% for grp in data %}

{{ grp.stmt.ba_name }} — {{ grp.stmt.period_label }} {{ grp.stmt.status }}

{% for t in grp.txns %} {% endfor %}
DateDescriptionAmountStatusPost as
{{ t.txn_date }}{{ t.description }} {{ t.amount_cents|c }} {% if t.status=='posted' %}posted JE#{{ t.journal_entry_id }} {% elif t.status=='ignored' %}ignored {% else %}unreviewed{% endif %} {% if t.status=='unreviewed' %}
{% endif %}
{% else %}

No statements imported yet. Upload one →

{% endfor %} {% endblock %}