{% extends "base.html" %} {% block title %}Insights{% endblock %} {% block content %}
| Month | Income | Saved | Rate |
|---|---|---|---|
| {{ entry.label }} | ${{ "%.0f"|format(entry.income_cents / 100) }} | {% if entry.net_cents >= 0 %}${{ "%.0f"|format(entry.net_cents / 100) }}{% else %}−${{ "%.0f"|format((entry.net_cents * -1) / 100) }}{% endif %} | {{ "%.1f"|format(entry.savings_rate_pct) }}% |