diff --git a/resources/twig/partials/reports/budgets.twig b/resources/twig/partials/reports/budgets.twig index 3fddc8add3..8aa53fff0d 100644 --- a/resources/twig/partials/reports/budgets.twig +++ b/resources/twig/partials/reports/budgets.twig @@ -61,7 +61,14 @@ {{ 'sum'|_ }} {{ budgets.getBudgeted|formatAmount }} - {{ budgets.getSpent|formatAmount }} + + {% if budgets.getSpent != 0 %} + {{ budgets.getSpent|formatAmountPlain }} + {% endif %} + {% if budgets.getSpent === 0 %} + {{ budgets.getSpent|formatAmount }} + {% endif %} + {{ budgets.getLeft|formatAmount }} {{ budgets.getOverspent|formatAmountPlain }}