{% if budgetLine.getBudget.id %}
{{ budgetLine.getBudget.name }}
{% else %}
{{ 'noBudget'|_ }}
{% endif %}
|
{% if budgetLine.getRepetition.id %}
{{ budgetLine.getRepetition.startdate.formatLocalized(monthAndDayFormat) }}
{% endif %}
|
{% if budgetLine.getRepetition.id %}
{{ budgetLine.getRepetition.amount|formatAmount }}
{% else %}
{{ 0|formatAmount }}
{% endif %}
|
{% if budgetLine.getSpent != 0 %}
{{ budgetLine.getSpent|formatAmount }}
{% endif %}
{% if budgetLine.getSpent == 0 %}
{{ budgetLine.getSpent|formatAmount }}
{% endif %}
|
{% if(budgetLine.getOverspent == 0) %}
{{ budgetLine.getLeft|formatAmount }}
{% endif %}
|
{% if budgetLine.getOverspent != 0 %}
{{ budgetLine.getOverspent|formatAmount }}
{% endif %}
|
{% endfor %}