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

Day Book

{% if undated_count %}
{{undated_count}} expenditure {% if undated_count == 1 %}entry{% else %}entries{% endif %} totalling ₹ {{undated_total}} have no date recorded in the system and cannot appear in this date-ordered book. Add dates to those entries to include them here.
{% endif %}

₹ {{total_receipts}}

Total Receipts

₹ {{total_payments}}

Total Payments
{% for t in transactions %} {% empty %} {% endfor %}
Date Voucher No. Type Particulars Category Fund Type Mode Amount
{{t.date|ddmmyyyy}} {{t.voucher_no}} {% if t.voucher_type == 'Receipt' %} Receipt {% else %} Payment {% endif %} {{t.particulars}} {{t.category}} {{t.fund_type}} {{t.mode}} ₹ {{t.amount}}
No transactions for this selection.
Net (Receipts − Payments) ₹ {{net_total}}
{% endblock %}