{% load i18n %} {% load currency_display %}
{# Daily Spending#}
{% translate 'Daily Spending Allowance' %}{% include 'includes/help_icon.html' with content=_('This is the final total divided by the remaining days in the month') %}
{% translate 'today' %}
{% for entry in totals.daily_spending_allowance %}
{% empty %}
-
{% endfor %}
{# Income#}
{% translate 'Income' %}
current
{% for entry in totals.paid_income %}
{% empty %}
-
{% endfor %}

projected
{% for entry in totals.projected_income %}
{% empty %}
-
{% endfor %}
{# Expenses#}
{% translate 'Expenses' %}
current
{% for entry in totals.paid_expenses %}
{% empty %}
-
{% endfor %}

projected
{% for entry in totals.projected_expenses %}
{% empty %}
-
{% endfor %}
{# Total#}
{% translate 'Total' %}
current
{% for entry in totals.total_current %}
{% empty %}
-
{% endfor %}
projected
{% for entry in totals.total_projected %}
{% empty %}
-
{% endfor %}

{% for entry in totals.total_final %}
{% empty %}
-
{% endfor %}
{#
#} {#

#} {# {% translate "Account Overview" %}

#} {#
#} {#
#} {# {% for account in account_summary %}#} {#
#} {#
#} {#
{{ account.name }}
#} {#
#} {#
#} {#
#} {#
#} {#
#} {#
#} {# {% endfor %}#} {#
#} {#
#}