The Ledger
One-time events
{% include 'includes/ledger_nav.html' %}
{% with messages = get_flashed_messages(with_categories=true) %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endwith %}

Add a one-time event

yes
// All one-time events
{% if events %}
{% for e in events %} {% endfor %}
DateDescriptionAmount DirectionStatus
{{ e.event_date }} {{ e.description }} {% if e.direction == 'inflow' %}+${{ '{:,.2f}'.format(e.amount) }} {% else %}−${{ '{:,.2f}'.format(e.amount) }} {% endif %} {{ e.direction }} {{ e.status }}
{% else %}
No one-time events on the chart.
{% endif %}
{% include 'includes/today_panel.html' ignore missing %} {% include 'includes/active_timer_strip.html' ignore missing %}