{% extends "base.html" %} {% block content %}
Total Across All Funds
${{ total | money }}
Match this number to your savings account balance
{% for f in funds %} {% set color = fund_colors.get(f.name, '#C5BBA0') %}
{{ f.name }}
{{ 'Goal' if f.type == 'goal' else 'Ongoing' }}
{% if f.notes %}
{{ f.notes }}
{% endif %}
${{ (f.balance or 0) | money }}
{% if f.type == 'goal' and f.goal %} {% set pct = f.pct or 0 %}
${{ (f.balance or 0) | money }} of ${{ f.goal | money }} ({{ pct }}%)
{% if f.monthly_needed %}
Save ${{ f.monthly_needed | money }}/mo to reach goal {% if f.months_left %} in {{ f.months_left }} months{% endif %}
{% endif %} {% else %} {% if f.monthly %}
Monthly contribution: ${{ f.monthly | money }}
{% endif %} {% endif %}
Edit settings
{% endfor %}
+ New Fund
{% endblock %}