{% extends 'base.html' %} {% block title %}Statement Detail - {{ bank_account.name }}{% endblock %} {% block page_pretitle %}
| # | Date | Description | Reference | Debit | Credit | Balance | Status |
|---|---|---|---|---|---|---|---|
| {{ line.line_number }} | {{ line.date|date:"d M Y" }} |
{{ line.description }}
|
{{ line.reference|default:"-" }} | {% if line.debit %} RM {{ line.debit|floatformat:2 }} {% else %} - {% endif %} | {% if line.credit %} RM {{ line.credit|floatformat:2 }} {% else %} - {% endif %} | RM {{ line.balance|floatformat:2 }} | {% if line.is_reconciled %} Matched {% if line.reconciled_transaction %} {{ line.reconciled_transaction.reference_no }} {% endif %} {% else %} Unmatched {% endif %} |
| No transaction lines found | |||||||
| Totals: | RM {{ total_debit|floatformat:2 }} | RM {{ total_credit|floatformat:2 }} | RM {{ statement.closing_balance|floatformat:2 }} | ||||