|
{{ budget.budget_name }}
|
{% for account in report.accounts %}
{% if budget.spent[account.id] %}
{{ formatAmountBySymbol(budget.spent[account.id].spent, budget.spent[account.id].currency_symbol, budget.spent[account.id].currency_decimal_places) }}
|
{% else %}
{% if report.accounts[account.id].sum != 0 %}
|
{% endif %}
{% endif %}
{% endfor %}
{% for sum in report.sums[budget.budget_id] %}
{{ formatAmountBySymbol(sum.sum, sum.currency_symbol, sum.currency_decimal_places) }}
{% endfor %}
|
{% endif %}
{% endfor %}