{% load month_name %} {% load i18n %}
{% translate 'projected income' %}
{% for entry in totals.income_unpaid %}
{% if entry.exchanged %}
{% endif %} {% empty %}
-
{% endfor %}
{% translate 'projected expenses' %}
{% for entry in totals.expense_unpaid %}
{% if entry.exchanged %}
{% endif %} {% empty %}
-
{% endfor %}
{% translate 'projected total' %}
{% for entry in totals.balance_unpaid %}
{% if entry.exchanged %}
{% endif %} {% empty %}
-
{% endfor %}

{% translate 'current income' %}
{% for entry in totals.income_paid %}
{% if entry.exchanged %}
{% endif %} {% empty %}
-
{% endfor %}
{% translate 'current expenses' %}
{% for entry in totals.expense_paid %}
{% if entry.exchanged %}
{% endif %} {% empty %}
-
{% endfor %}
{% translate 'current total' %}
{% for entry in totals.balance_paid %}
{% if entry.exchanged %}
{% endif %} {% empty %}
-
{% endfor %}

{% translate 'final total' %}
{% for entry in totals.balance_total %}
{% if entry.exchanged %}
{% endif %} {% empty %}
-
{% endfor %}