The Ledger
Income events
{% include 'includes/ledger_nav.html' %}
{% with messages = get_flashed_messages(with_categories=true) %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endwith %}
Log an income event
Date
Amount
Type
Paycheck
Bonus
Side income
Reimbursement
Other
Source
Recurring?
—
Biweekly
Monthly
Quarterly
Notes
Log income
// All income events
{% if events %}
Date
Type
Source
Amount
Recurring
{% for e in events %}
{% for t in ['paycheck','bonus','side_income','reimbursement','other'] %}
{{ t | replace('_',' ') }}
{% endfor %}
—
{% for p in ['biweekly','monthly','quarterly'] %}
{{ p }}
{% endfor %}
save
×
{% endfor %}
{% else %}
No income events logged yet. They populate automatically as you save payday sessions.
{% endif %}
{% include 'includes/today_panel.html' ignore missing %} {% include 'includes/active_timer_strip.html' ignore missing %}