{# data for previous/next markers #} {% set endSet = false %} {% set startSet = false %} {% for transaction in transactions %} {# start marker #} {% if transaction.date < start and startSet == false %} {% set startSet = true %} {% endif %} {# end marker #} {% if transaction.date <= end and endSet == false %} {% set endSet = true %} {% endif %} {# icon #} {# description #} {% endfor %} {# if the start marker has not been generated yet, do it now, at the end of the loop. #} {% if startSet == false %} {% set startSet = true %} {% endif %}
{{ trans('list.description') }} {{ trans('list.amount') }}
  {{ trans('firefly.start_of_reconcile_period', {period: start.formatLocalized(monthAndDayFormat) }) }}  
  {{ trans('firefly.end_of_reconcile_period', {period: end.formatLocalized(monthAndDayFormat) }) }}  
{{ 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 %}
  {{ trans('firefly.start_of_reconcile_period', {period: start.formatLocalized(monthAndDayFormat) }) }}