{% extends "base.html" %} {% block title %}Customer Ledger - {{ customer.name }}{% endblock %} {% block content %}
Opening Balance: {{ opening_balance|floatformat:2 }}
| Date | Reference | Description | Debit | Credit | Balance |
|---|---|---|---|---|---|
| {{ entry.date|date:"Y-m-d" }} | {{ entry.reference }} | {{ entry.description }} | {{ entry.debit|floatformat:2 }} | {{ entry.credit|floatformat:2 }} | {{ entry.balance|floatformat:2 }} |
| Closing Balance: | {{ final_balance|floatformat:2 }} | ||||