{% include "partials/month_zero.html" %}
{% for g in groups %}
{{ g.label }}${{ '{:,.2f}'.format(g.total_applied) }}/${{ '{:,.2f}'.format(g.total_planned) }}
{% for section in g.sections %}
{% include "partials/month_section.html" %}
{% if g.group.value == 'committed' and section.section.value == 'debt_minimum' %}
{% include "partials/month_target.html" %}
{% endif %}
{% endfor %}
{% endfor %}