{% extends "base.html" %} {% block title %}ITAT Records{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Income Income Tax Appellate Tribunal(ITAT) Records 📄

âž• Add New Record {% if records %}
{% for record in records %} {% endfor %}
Year Gross Total Income Net Taxable Income Total Tax Payable Refund Created Record Date Actions
AY {{ record.year }}-{{ record.year+1 }} {{ "{:,.2f}".format(record.gross_total_income) }} {{ "{:,.2f}".format(record.net_taxable_income) }} {{ "{:,.2f}".format(record.total_tax_payable) }} {{ "{:,.2f}".format(record.refund) }} {{ record.created_at.strftime('%Y-%m-%d') }} Edit
{% else %}

No records found. Click the button above to add one!

{% endif %}
{% endblock %}