{% if balanceLine.getBudget %}
{{ balanceLine.getTitle }}
|
{{ balanceLine.getRepetition.amount|formatAmount }} |
{% else %}
{{ balanceLine.getTitle }} |
{% endif %}
{% for balanceEntry in balanceLine.getBalanceEntries %}
{% if balanceEntry.getSpent != 0 %}
{{ (balanceEntry.getSpent*-1)|formatAmountPlain }}
{% endif %}
{% if balanceEntry.getLeft != 0 %}
{{ (balanceEntry.getLeft)|formatAmountPlain }}
{% endif %}
|
{% endfor %}
{% if balanceLine.leftOfRepetition != 0 %}
{{ balanceLine.leftOfRepetition|formatAmount }}
{% endif %}
|
{% if balanceLine.sumOfLeft != 0 %}
{{ balanceLine.sumOfLeft|formatAmount }}
{% endif %}
|
{% endfor %}