{% if entry.category == null %}
{{ 'noCategory'|_ }}
{% else %}
{{ entry.category }}
{% endif %}
|
{% if entry.spent.per_currency|length ==0 %}
{{ '0'|formatAmount }}
{% else %}
{% for expense in entry.spent.per_currency %}
{{ formatAmountBySymbol(expense.sum, expense.currency.symbol, expense.currency.dp) }}
{% endfor %}
{% endif %}
|
{% if entry.earned.per_currency|length ==0 %}
{{ '0'|formatAmount }}
{% else %}
{% for income in entry.earned.per_currency %}
{{ formatAmountBySymbol(income.sum, income.currency.symbol, income.currency.dp) }}
{% endfor %}
{% endif %}
|
{% endfor %}