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

Fund Utilization Report

Financial Year: {{financial_year}} — fund classification per the Income Tax Act (Restricted / Unrestricted / Corpus). A fund showing negative balance means it has been spent beyond what was received for it in this period.

Fund-wise Summary
{% for row in fund_rows %} {% empty %} {% endfor %}
Fund Type Received Spent Balance
{{row.fund_type}} ₹ {{row.received}} ₹ {{row.spent}} ₹ {{row.balance}} {% if row.overspent %}{% endif %}
No transactions for this selection.
Total ₹ {{total_received}} ₹ {{total_spent}} ₹ {{total_balance}}
{% endblock %}