{% for budget in report.budgets %} {% for budget_limit in budget.budget_limits %} {% if budget.no_budget %} {% else %} {% endif %} {% endfor %} {% endfor %} {% for sum in report.sums %} {% endfor %}
{{ 'budget'|_ }} {{ 'spent'|_ }} {{ 'overspent'|_ }}
{{ 'no_budget'|_ }} ({{ budget_limit.currency_name }}) {{ budget.budget_name }} {{ formatAmountBySymbol(budget_limit.spent, budget_limit.currency_symbol, budget_limit.currency_decimal_places) }} {% if null != budget_limit.overspent %} {{ formatAmountBySymbol(budget_limit.overspent, budget_limit.currency_symbol, budget_limit.currency_decimal_places) }} {% endif %}
{{ 'sum'|_ }} ({{ sum.currency_name }}) {{ formatAmountBySymbol(sum.budgeted, sum.currency_symbol, sum.currency_decimal_places) }}   {{ formatAmountBySymbol(sum.spent, sum.currency_symbol, sum.currency_decimal_places) }}     {{ formatAmountBySymbol(sum.left, sum.currency_symbol, sum.currency_decimal_places) }} {{ formatAmountBySymbol(sum.overspent, sum.currency_symbol, sum.currency_decimal_places) }}