{% extends "base.html" %} {% import "_macros.html" as m %} {% block title %}Reconciliations{% endblock %} {% block content %}

Reconciliations

Each approved reconciliation is a checkpoint, re-checked against the ledger as it is now. Changed means it matched when you approved it, but a later change moved the balance for that date.

{% if rows %}
{% for r in rows %} {% endfor %}
StatusAccountDateStatementLedger thenLedger nowDifferenceRecord
{{ r.status }} {{ r.account }} {{ r.date }} {{ r.statement_balance }} {{ r.commodity }} {{ r.recorded_ledger_balance }} {{ r.current_ledger_balance }} {{ r.current_difference }} {{ m.record_link(r.id) }}
{% else %}
No reconciliations yetPropose one with wealthbraid reconcile ACCOUNT --date … --balance …
{% endif %} {% endblock %}