{% extends 'base.html' %} {% load humanize %} {% block title %}Client Ledger โ {{ client.get_full_name }} โ Haven Grazuri{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
| Date | Reference | Loan | Account | Description | Debit (Dr) | Credit (Cr) | Balance | Posted By |
|---|---|---|---|---|---|---|---|---|
| {{ start_date|date:"d M Y" }} | Opening Balance | โ | โ | KES {{ opening_balance|floatformat:2|intcomma }} | โ | |||
| {{ row.date|date:"d M Y" }} | {{ row.reference }} | {{ row.loan_number }} | {{ row.account_code }} {{ row.account_name|truncatechars:22 }} | {% if row.debit %}KES {{ row.debit|floatformat:2|intcomma }}{% else %}โ{% endif %} | {% if row.credit %}KES {{ row.credit|floatformat:2|intcomma }}{% else %}โ{% endif %} | KES {{ row.balance|floatformat:2|intcomma }} | {{ row.posted_by }} | |
| Closing Balance โ {{ end_date|date:"d M Y" }} | KES {{ total_debits|floatformat:2|intcomma }} | KES {{ total_credits|floatformat:2|intcomma }} | KES {{ closing_balance|floatformat:2|intcomma }} | โ | ||||
Either no journal entries have been posted for this client's loans yet, or none fall within the selected date range.
Show all time