{% extends "./layout/default" %} {% block breadcrumbs %} {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, account, moment, start, end) }} {% endblock %} {% block content %}

{{ 'reconcile_range'|_ }}

{{ 'start_balance'|_ }} {{ 'end_balance'|_ }}
{{ 'date'|_ }} {{ 'balance'|_ }} {{ 'date'|_ }} {{ 'balance'|_ }}
{{ currency.symbol }}
{{ currency.symbol }}
{{ 'update_balance_dates_instruction'|_ }}
{{ 'start_reconcile'|_ }}

{{ 'reconcile_options'|_ }}

{{ 'difference'|_ }} {{ 'actions'|_ }}

{{ 'transactions'|_ }}

{# 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 %}
{{ 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 transaction.reconciled %} {{ transaction|transactionReconciled }} {% else %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}