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

{{ 'showEverything'|_ }}

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