{% extends "./layout/default" %} {% block breadcrumbs %} {{ Breadcrumbs.render(Route.getCurrentRoute.getName, transactions) }} {% endblock %} {% block content %}

{{ 'mass_edit_journals'|_ }}

{{ 'cannot_edit_other_fields'|_ }}

{% for transaction in transactions %} {# AMOUNT #} {# category #} {# budget #} {% endfor %}
  {{ trans('list.description') }} {{ trans('list.amount') }} {{ trans('list.date') }} {{ trans('list.from') }} {{ trans('list.to') }} {{ trans('list.category') }} {{ trans('list.budget') }}
{# LINK TO EDIT FORM #} {# DESCRIPTION #}
{{ transaction.currency_symbol }}
{% if transaction.foreign_amount %} {# insert foreign data #}
{{ transaction.foreign_currency_symbol }}
{% endif %}
{# DATE #} {# SOURCE ACCOUNT ID FOR TRANSFER OR WITHDRAWAL #} {% if transaction.type == 'Transfer' or transaction.type == 'Withdrawal' %} {% else %} {# SOURCE ACCOUNT NAME FOR DEPOSIT #} {% endif %} {% if transaction.type == 'Transfer' or transaction.type == 'Deposit' %} {# DESTINATION ACCOUNT NAME FOR TRANSFER AND DEPOSIT #} {% else %} {# DESTINATION ACCOUNT NAME FOR EXPENSE #} {% endif %} {% if transaction.type == 'Withdrawal' %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}