The Ledger
History
{% include 'includes/ledger_nav.html' %}
// Kill log
{% if kill_log %}
Account
Killed
{% for k in kill_log %}
{{ k.name }}
{{ k.killed_at[:10] if k.killed_at else '—' }}
{% endfor %}
{% else %}
No kills yet. Add them one at a time.
{% endif %}
// Payment history
{% if tx_history %}
Date
Account
Description
Amount
Source
{% for t in tx_history %}
{{ t.tx_date }}
{{ t.account_name }}
{{ t.description or '—' }}
${{ '{:,.2f}'.format(t.amount) }}
{{ t.source }}
{% endfor %}
{% else %}
No payments logged yet.
{% endif %}
{% include 'includes/today_panel.html' ignore missing %} {% include 'includes/active_timer_strip.html' ignore missing %}