{% extends "office/account/base.html" %} {% load bootstrap4 %} {% load extract_property %} {% load i18n %} {% block account_content %}
{% csrf_token %} {{ formset.management_form }} {% for booking in bookings %} {% with transaction=booking.transaction %} {% with related_bookings=transaction.cached_bookings %} {% with form=booking.form %} {% if booking.transaction_balances_debit != booking.transaction_balances_credit %} {% endif %} {% for related_booking in related_bookings %} {% endfor %} {% resetcycle related_row %} {% endwith %} {% endwith %} {% endwith %} {% endfor %}
{% trans "Date" %} {% trans "Purpose" %}
{% trans "Originator/Recipient" %}
{% trans "Member" %} {% trans "Account" %} {{ ACCOUNT_COLUMN_HEADERS.0 }} {{ ACCOUNT_COLUMN_HEADERS.1 }}
{{ form.transaction }} {{ form.memo }} {{ form.member }} {{ form.account }} {{ form.debit_value }} {{ form.credit_value }}
{% include "office/pagination.html" %} {% endblock %}