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

Ledger

Current version of every entry, newest first. Open an entry to see its evidence, the operation behind it, and any corrections.

{% for v in entries %} {% else %} {% endfor %}
DateDescriptionPostings
{{ v.data.date }} {{ v.data.payee or "" }}
{{ v.data.narration or "" }}
{% for p in v.data.postings %}{% endfor %}
{{ p.account }}{{ p.amount }}{{ p.commodity }}
trace{% if v.history | length > 1 %} corrected{% endif %}
No entries.
{% endblock %}