{% extends "../base.html" %} {% load crispy_forms_tags %} {% load humanize %} {% block page_title %}Bank Reconciliation{% endblock %} {% block content %}
{{ account.account_name }}
| Date | Description | Amount | Type | Bank | Actions |
|---|---|---|---|---|---|
| {{ transaction.transaction_date|date:"M d, Y" }} | {{ transaction.description }} | UGX {{ transaction.amount|floatformat:0|intcomma }} | {{ transaction.transaction_type }} | {{ transaction.bank_statement.bank_account.bank_name }} | |
| All transactions are reconciled! | |||||
| Payment Date | Student | Amount | Reference | Bill | Actions |
|---|---|---|---|---|---|
| {{ payment.payment_date|date:"M d, Y" }} | {{ payment.bill.student.student_name }} | UGX {{ payment.amount|floatformat:0|intcomma }} | {{ payment.reference_no }} | {{ payment.bill }} | |
| All payments are matched! | |||||