{% extends 'base.html' %} {% block title %}Quotations{% endblock %} {% block content %}

Quotations

New Quotation
{% for quotation in object_list %} {% empty %} {% endfor %}
Quote # Customer Date Expiry Date Status Total Amount Actions
{{ quotation.quote_number }} {{ quotation.customer.name|default:"Walk-in Customer" }} {{ quotation.issue_date|date:"M d, Y" }} {{ quotation.expiry_date|date:"M d, Y"|default:"-" }} {{ quotation.get_status_display }} KSh {{ quotation.total_amount|floatformat:2 }} {% if quotation.status == 'draft' or quotation.status == 'sent' %} {% endif %}
No quotations found.
{% if is_paginated %}
Showing page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}
{% endif %}
{% endblock %}