{% if not next_date %}
Safe to spend ?Amount which is safe to spend according to the budget
{{budget.expected_remaining}}{{config['CURRENCY']}}
{% else %}
Savings ?Savings made after expected recurring expenses are taken into account. If negative then amount used from the savings to cover this month.
{{'{0:+}'.format(budget.savings)}}{{config['CURRENCY']}}
{% endif %}
{% if not next_date %}

{{budget.expected_savings}}{{config['CURRENCY']}} {% if budget.savings_goal > 0 %}/ {{budget.savings_goal}}{{config['CURRENCY']}}{% endif %}

{% else %}

{{'{0:+}'.format(budget.balance)}}{{config['CURRENCY']}}

{% endif %}

{{'{0:+}'.format(budget.real_balance)}}{{config['CURRENCY']}}

{{max(budget.expected_income, budget.income) if not next_date else budget.income }}{{config['CURRENCY']}} {% if budget.income > budget.expected_income %} (+{{budget.income - budget.expected_income}}{{config['CURRENCY']}}) {% elif budget.income < budget.expected_income %} (-{{budget.expected_income - budget.income}}{{config['CURRENCY']}}) {% endif %}

{{budget.expected_recurring_expenses}}{{config['CURRENCY']}} ({{budget.recurring_expenses}}{{config['CURRENCY']}})

{{budget.expenses}}{{config['CURRENCY']}}