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