{% if columns %}
| Period | Income € | Expense € | Net € |
|---|---|---|---|
| {{ col.label }} | {{ "%.2f" | format(col.income) }} | {{ "%.2f" | format(col.expense) }} | {{ "%.2f" | format(col.net) }} |
| Total | {{ "%.2f" | format(result.total_income) }} | {{ "%.2f" | format(result.total_expense) }} | {{ "%.2f" | format(result.total_net) }} |
No periods in the selected window.
{% endif %}