{% extends 'base.html' %} {% load humanize %} {% block title %}Expense PDF Reports - HAVEN GRAZURI{% endblock %} {% block content %}

Expense PDF Reports

Generate and download detailed expense reports filtered by period.

โ† Back to Expenses
๐Ÿ“… Daily Today only ๐Ÿ—“๏ธ Monthly This month ๐Ÿ“† 6 Months Last 6 months ๐Ÿ“Š Yearly This year ๐Ÿ”ง Custom Any date range
{% if preset or date_from %}

Report Preview

{{ expense_count|intcomma }} expense{{ expense_count|pluralize }}  ยท  KES {{ total_amount|floatformat:2|intcomma }}

{% if preset == 'daily' %}Today ยท {{ today }} {% elif preset == 'monthly' %}This month from {{ month_start }} {% elif preset == '6months' %}Last 6 months to {{ today }} {% elif preset == 'yearly' %}This year from {{ year_start }} {% elif date_from and date_to %}{{ date_from }} to {{ date_to }} {% elif date_from %}From {{ date_from }} {% elif date_to %}Up to {{ date_to }} {% else %}All time{% endif %}

Download PDF Report
{% endif %} {% if preset or date_from %}

Narrow this report further (optional)

{% if preset %}{% endif %} {% if not preset %} {% if date_from %}{% endif %} {% if date_to %}{% endif %} {% endif %}
Clear
{% endif %}

๐Ÿ”ง Custom Date Range Report

๐Ÿ“„ What's included in the report:

{% endblock %}