{% extends "layout.html" %} {% block title %}{{date.strftime('%B %Y')}}{% endblock %} {% block head %} {% endblock %} {% block page_header %}
{{famount(account_balance or 0)}}
Remaining planned expenses: {{famount(budgets.undetected_planned_expenses)}}
Balance after planned expenses: {{famount(account_balance - budgets.undetected_planned_expenses, True)}}
{% for acc in accounts %} {% endfor %}
Accounts
{{acc.title}} {{famount(acc.amount)}}
{% if budget_goals %} {% for goal in budget_goals %} {% endfor %}
Budget goals
{{goal.label}} ({{famount(goal.target)}})
{% if goal.used %} {% endif %} {% if goal.remaining %} {% if goal.saved %} {% endif %} {% else %} {% endif %}
{% endif %}
Savings this year: {{famount(budgets.savings)}} {% if budget.savings_goal %} / {{famount(budgets.savings_goal)}} ({{famount(budgets.savings_balance)}}){% endif %}
Available savings after goals: {{famount(savings_after_goals)}} {% if budgets.adjusted_savings_goal > budget.savings_goal %}
Adjusted savings goal: {{famount(budgets.adjusted_savings_goal)}} {% endif %}
{% for month, label in months %} {{label}} {% endfor %}
{% endblock %} {% block page %} {% if budget %} {% include "_budget.html" %} {% if budget.transactions %} {% if categories %}
{% for category in categories %} {% if category.amount > 0 %} {% endif %} {% endfor %}

{% else %}
{% endif %} {% include "_transactions.html" %} Clear filter {% endif %} {% else %}

No data for this month

{% endif %} {% endblock %} {% block footer %}

Categories: {% for category in categories %} {% if category.name %} {% endif %} {% endfor %} Add category
Budget goal: {% for goal in budget_goals %} {% endfor %}
{% endblock %}