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

Incomes

₹ {{total_received}}
Total Received (this view)
₹ {{total_sanctioned}}
Total Sanctioned (this view)
Income by Head
{% for head in income_by_head %} {% empty %}

No income records for this selection.

{% endfor %}
{% if user.user_type.user_permission.finance_department_income_export == 1 %} {% endif %}
{% if user.user_type.user_permission.finance_department_income_edit == 1 or user.user_type.user_permission.finance_department_income_delete == 1 %} {% endif %} {% for income in incomes %} {% if user.user_type.user_permission.finance_department_income_edit == 1 or user.user_type.user_permission.finance_department_income_delete == 1 %} {% endif %} {% endfor %} {% if user.user_type.user_permission.finance_department_income_edit == 1 or user.user_type.user_permission.finance_department_income_delete == 1 %}{% endif %}
S No. Type of Income Type of Donation Donor/organisation Email Id Contact Number Sanction Amount Received Amount Payment Mode Payment DateAction
{{forloop.counter}} {{income.income_type}} {{income.donation_type}} {{income.donor}} {{income.email}} {{income.mobile}} {{income.sanction_amount}} {{income.received_amount}} {{income.mode_of_payment}} {{income.payment_date|ddmmyyyy}} {% if user.user_type.user_permission.finance_department_income_edit == 1 %} {% endif %} {% if user.user_type.user_permission.finance_department_income_delete == 1 %} {% endif %}
Total ₹ {{total_sanctioned}} ₹ {{total_received}}
    {% for message in messages %} {% endfor %} {% endblock %}