{% extends "./layout/default.twig" %} {% block breadcrumbs %} {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, budget, repetition) }} {% endblock %} {% block content %}

{{ 'overview'|_ }}

{{ 'transactions'|_ }}

{% include 'list/journals.twig' %}
{% if limits|length == 1 %}

{{ 'showEverything'|_ }}

{% endif %} {% for limit in limits %}
{{ 'amount'|_ }}: {{ limit.amount|formatAmount }}
{{ 'spent'|_ }}: {{ limit.spent|formatAmount }}
{% set overspent = limit.amount + limit.spent < 0 %} {% if overspent %} {% set pct = (limit.spent != 0 ? (limit.amount / (limit.spent*-1))*100 : 0) %}
{% else %} {% set pct = (limit.amount != 0 ? (((limit.spent*-1) / limit.amount)*100) : 0) %}
{% endif %}
{% endfor %} {% if limits|length == 1 %}

{{ 'showEverything'|_ }}

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}