{% with messages = get_flashed_messages(with_categories=true) %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endwith %}
// All one-time events
{% if events %}
| Date | Description | Amount |
Direction | Status | |
{% for e in events %}
| {{ e.event_date }} |
{{ e.description }} |
{% if e.direction == 'inflow' %}+${{ '{:,.2f}'.format(e.amount) }}
{% else %}−${{ '{:,.2f}'.format(e.amount) }}
{% endif %}
|
{{ e.direction }} |
{{ e.status }} |
|
{% endfor %}
{% else %}
No one-time events on the chart.
{% endif %}
{% include 'includes/today_panel.html' ignore missing %}
{% include 'includes/active_timer_strip.html' ignore missing %}