{% extends 'sales/base.html' %} {% block title %}Quotation List{% endblock %} {% block content %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}

QUOTATION LIST

{% if page_obj %} {% for quotation in page_obj %} {% 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 request.user.is_admin_user or request.user.is_super_user %} {% endif %}
No Quotations Created Yet
{% for quotation in page_obj %} {% endfor %}
{% endblock %}