{% if not next_date %}
Safe to spend ?Amount which is safe to spend according to the budget
{{famount(budget.expected_remaining)}}
{% else %}
Savings ?Savings made after expected planned expenses are taken into account. If negative then amount used from the savings to cover this month.
{{famount(budget.savings, True)}}
{% endif %}
{% if not next_date %} {% else %} {% endif %} {% if budget.expected_planned_expenses %} {% endif %}
Savings {{famount(budget.expected_savings)}} {% if budget.savings_goal > 0 %}/ {{famount(budget.savings_goal)}}{% endif %} {% if budgets.adjusted_savings_goal > budget.savings_goal %} {% endif %}
Budget Balance ?Theorical balance if the budget is respected (meaning if savings and all planned expenses are taken into account) {{famount(budget.balance, True)}}
Real Balance {{famount(budget.real_balance, True)}}
Income ?Expected income is used unless month is finished or income higher than expected {{famount(max(budget.expected_income, budget.income) if not next_date else budget.income)}} {% if budget.expected_income %} {% if budget.income > budget.expected_income %} ({{famount(budget.income - budget.expected_income, True)}}) {% elif budget.income < budget.expected_income %} ({{famount(budget.expected_income - budget.income, True)}}) {% endif %} {% endif %}
Planned expenses ?Expected planned expenses is used for calculations. The number in brackets is the actual amount of planned expenses detected during this month {{famount(budget.expected_planned_expenses)}} ({{famount(budget.planned_expenses)}})
Expenses ?Does not include planned expenses {{famount(budget.expenses)}}