{% extends 'reports/base_report.html' %} {% load humanize %} {% block title %}Quotations Report{% endblock %} {% block report_content %}
| Date | Quotation # | Customer | Items | Total Amount | Status | Created By | Actions |
|---|---|---|---|---|---|---|---|
| {{ quote.created_at|date:"M d, Y" }} | {{ quote.quotation_number }} | {{ quote.customer.name|default:"Walk-in Customer" }} | {{ quote.items.count }} | Ksh {{ quote.total_amount|intcomma }} | {{ quote.get_status_display }} | {{ quote.created_by.get_full_name|default:quote.created_by.username }} | View |
| No quotations found for the selected period. | |||||||
| Total: | Ksh {{ total_amount|intcomma }} | ||||||