|
{% if account.source_name == account.dest_name %}
{{ account.source_name }}
{% else %}
{{ account.source_name }} / {{ account.dest_name }}
{% endif %}
{% if account.source_iban != '' and account.dest_iban != '' %}
{% if account.source_iban == account.dest_iban %}
({{ account.source_iban }})
{% else %}
({{ account.source_iban }} / ({{ account.dest_iban }}))
{% endif %}
{% endif %}
|
{{ formatAmountBySymbol(account.spent, account.currency_symbol, account.currency_decimal_places) }}
|
{{ formatAmountBySymbol(account.earned, account.currency_symbol, account.currency_decimal_places) }}
|
{{ formatAmountBySymbol(account.sum, account.currency_symbol, account.currency_decimal_places) }}
|
{% endfor %}