{% extends "./layout/default.twig" %} {% block content %} {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName) }}
{{ Session.get('start').formatLocalized(monthFormat) }}
{{ 'budgeted'|_ }}: {{ budgeted|formatAmountPlain }}
{{ trans('firefly.availableIn',{date : Session.get('start').formatLocalized(monthFormat) }) }}: {{ budgetIncomeTotal|formatAmount }}
{{ 'spent'|_ }}: {{ spent|formatAmount }}
{% for budget in budgets %}
{% if budget.currentRep %} {{ budget.name }} {% else %} {{ budget.name }} {% endif %}
{{ 'budgeted'|_ }}
{{ defaultCurrency.symbol|raw }}
{{ 'spent'|_ }} {{ budget.spent|formatAmount }}
{% endfor %}
{{ 'createBudget'|_ }}
{% if inactive|length > 0 %}
{{ 'inactiveBudgets'|_ }}
{% for index,budget in inactive %} {% if index != inactive|length-1 %} {{ budget.name }}, {% else %} {{ budget.name }} {% endif %} {% endfor %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}