{% extends "base.html" %} {% block content %}
{% include "partials/budget_zero.html" %} {% for g in groups %}
{{ g.label }} ${{ '{:,.2f}'.format(g.total) }} {% for section in g.sections %} {% include "partials/section.html" %} {% if g.group.value == 'committed' and section.section.value == 'debt_minimum' %} {% include "partials/target_card.html" %} {% endif %} {% endfor %}
{% endfor %}
{% endblock %}