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

{{ 'showEverything'|_ }}

{% endif %}
{% endblock %} {% block scripts %} {% if Config.get('firefly.chart') == 'google' %} {% endif %} {% endblock %}