{% extends 'sales/base.html' %} {% block title %}Dispatch Page{% endblock %} {% block content %}

Quotation Dispatch List

{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% if quotations %} {% for quotation in quotations %} {% endfor %} {% else %} {% endif %}
CODE STATUS SELLER CREATED AT CUSTOMER NAME CUSTOMER MOBILE ACTION
{{ quotation.qid }} {{ quotation.status }} {{ quotation.seller }} {{ quotation.created_at }} {{ quotation.customer_info.customer_name }} {{ quotation.customer_info.customer_mobile }} {% if quotation.dispatchproduct_set.exists %} {% else %} {% endif %}
No Quotations Available
{% endblock %}