{% if not next_date %}
Safe to spend ?Amount which is safe to spend according to the budget
{{budget.expected_remaining}}€
{% 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)}}€
{% endif %}
{% if not next_date %}

{{budget.expected_savings}}€ {% if budget.savings_goal > 0 %}/ {{budget.savings_goal}}€ ({{ (max(budget.expected_savings, 0) * 100 / budget.savings_goal)|int }}%){% endif %}

{% else %}

{{'{0:+}'.format(budget.balance)}}€

{% endif %}

{{'{0:+}'.format(budget.real_balance)}}€

{{max(budget.expected_income, budget.income) if not next_date else budget.income }}€ {% if budget.income > budget.expected_income %} (+{{budget.income - budget.expected_income}}€) {% elif budget.income < budget.expected_income %} (-{{budget.expected_income - budget.income}}€) {% endif %}

{{budget.expected_recurring_expenses}}€ ({{budget.recurring_expenses}}€)

{{budget.expenses}}€