{% if journal.transaction_type_type == 'Withdrawal' %}
{% endif %}
{% if journal.transaction_type_type == 'Deposit' %}
{% endif %}
{% if journal.transaction_type_type == 'Transfer' %}
{% endif %}
{% if journal.transaction_type_type == 'Reconciliation' %}
{% endif %}
{% if journal.transaction_type_type == 'Opening balance' %}
{% endif %}
{% if journal.group_title %}
{{ journal.group_title }}:
{% endif %}
{{ journal.description }}
{{ formatAmountBySymbol(journal.amount, journal.currency_symbol, journal.currency_symbol_decimal_places) }}
{% if null != journal.foreign_amount %}
({{ formatAmountBySymbol(journal.foreign_amount, journal.foreign_currency_symbol, journal.foreign_currency_symbol_decimal_places) }})
{% endif %}
{% if journal.date >= start and journal.date <= end %}
{% if journal.reconciled %}
{% else %}
{% endif %}
{% else %}
{% if journal.reconciled %}
{% else %}
{% endif %}
{% endif %}
{{ journal.date.formatLocalized(monthAndDayFormat) }}
{{ journal.source_account_name }}
{{ journal.destination_account_name }}
{#
{{ 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 %}