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

Receipt & Payment Account

{% if undated_count %}
{{undated_count}} expenditure {% if undated_count == 1 %}entry{% else %}entries{% endif %} totalling ₹ {{undated_total}} have no date recorded and are not included in this financial-year statement.
{% endif %}

Financial Year: {{financial_year}} — cash-basis statement (money actually received/paid in this FY, not sanctioned amounts).

Receipts
{% for category, amount in receipts_by_category %} {% endfor %}
HeadAmount
Opening Balance₹ {{opening_balance}}
{{category}}₹ {{amount}}
Total Receipts (incl. Opening)₹ {{opening_balance|add:total_receipts}}
Payments
{% for category, amount in payments_by_category %} {% endfor %}
HeadAmount
{{category}}₹ {{amount}}
Closing Balance₹ {{closing_balance}}
Total Payments (incl. Closing)₹ {{closing_balance|add:total_payments}}
{% endblock %}