{# icon #}
{{ transaction|transactionIcon }}
{# description #}
{{ transaction|transactionDescription }}
{# is a split journal #}
{{ transaction|transactionIsSplit }}
{# count attachments #}
{{ transaction|transactionHasAtt }}
{{ transaction|transactionAmount }}
{% if currency.id == transaction.transaction_currency_id %}
{% set transactionAmount = transaction.transaction_amount %}
{% else %}
{% set transactionAmount = transaction.transaction_foreign_amount %}
{% endif %}
{% if transaction.reconciled %}
{{ transaction|transactionReconciled }}
{% else %}
{% endif %}
{{ transaction.date.formatLocalized(monthAndDayFormat) }}
{# all source accounts #}
{{ transaction|transactionSourceAccount }}
{# all destination accounts #}
{{ transaction|transactionDestinationAccount }}
{{ transaction|transactionBudgets }}
{{ transaction|transactionCategories }}
{% endfor %}
{# if the start marker has not been generated yet, do it now, at the end of the loop. #}
{% if startSet == false %}