Finance Tracker

{% if depletion_date %}

Depletion Date: {{ depletion_date }} -- Details:

{% else %}

We DONT run out of money before super kicks in!!! -- Details:

{% endif %}
{% set first_yr=2025 %} {% for date, dollars in savings %} {% set yr=date[:4] %} {% set mon=date[5:7] %} {% set day=date[8:10 ] %} {% if yr|int > first_yr|int and mon == '01' and day|int <= 14 %}       {% endif %} {{ date }}:  {{ '$%0.2f' % dollars|float }}
{% endfor %}
     SUMMARY/BUDGET
{% for label, value in BUDGET %} {{label}} {{value}}
{% endfor %}