{% extends 'base.html' %} {% block content %}
{% if balance > 0 %} Account has {{ balance|currency }} available {% else %} Account is overdrawn by {{ (balance * -1)|currency }} {% endif %}
| Date | Description | Amount | Customer | Balance | Actions |
|---|---|---|---|---|---|
| {{ t.date|date_format }} | {{ t.description }} | {{ t.amount|currency }} | {{ t.ref_customer.name if t.ref_customer else '-' }} | {{ running_balance|currency }} | Edit |
| Final Balance | {{ balance|currency }} | ||||
No transactions found in this account.
{% endif %}