{% extends "base.html" %} {% block title %}Transaction Review{% endblock %} {% block body %}
Imported statement lines. Choose an account (and dimensions) to post a balanced journal entry against the bank/card account.
{% for grp in data %}| Date | Description | Amount | Status | Post 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 %} |
No statements imported yet. Upload one →
{% endfor %} {% endblock %}