{% extends 'base.html' %} {% load kunj_filters %} {% block body %}
{% include 'navbar.html' %}
{% include 'header.html' %}

Party Ledger

{% if party %}
Ledger for: {{party}} — Closing Balance: ₹ {{closing_balance}}
{% for row in ledger_rows %} {% empty %} {% endfor %}
DateVoucher No.TypeCategoryFund TypeAmountBalance
{{row.date|ddmmyyyy}} {{row.voucher_no}} {% if row.voucher_type == 'Receipt' %}Receipt{% else %}Payment{% endif %} {{row.category}} {{row.fund_type}} ₹ {{row.amount}} ₹ {{row.balance}}
No transactions for this party.
Closing Balance₹ {{closing_balance}}
{% else %}
Pick a party above to view their ledger.
{% endif %}
{% endblock %}