{% extends 'reports/base_report.html' %} {% load humanize %} {% block title %}Quotations Report{% endblock %} {% block report_content %}
Quotations Summary
Total Quotations

{{ quotations.paginator.count }}

Total Amount

Ksh {{ total_amount|intcomma }}

Status Overview
{% for status in status_counts %}
{{ status.status|title }}
{{ status.count }} quotations
{% endfor %}
{% for quote in quotations %} {% empty %} {% endfor %}
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 }}
{% if quotations.has_other_pages %} {% endif %}
{% endblock %} {% block extra_js %} {{ block.super }} {% endblock %}