{% extends "base.html" %} {% block page_heading %}Monthly Sales Report{% endblock %} {% block content %} Back
{{ total|currency }}
Total Sales — {{ month }}
{% for s in sales %} {% else %} {% endfor %}
InvoiceCustomerDateTotalPaidStatus
{{ s.invoice_number }} {{ s.customer_name or 'Walk-in' }} {{ s.sale_date }} {{ s.total_amount|currency }} {{ s.paid_amount|currency }} {{ s.payment_status }}
No sales this month.
{% endblock %}