{% extends 'layout/default.html' %} {% load i18n %} {% block title %}{% translate "List Quote" %}{% endblock %} {% block breadcumbheading %} {% translate "Manage Quotes" %} {% endblock %} {% block breadcumbfirst %} Manage Quotes {% endblock %} {% block breadcumbaddmore %} {% endblock %} {% block content %}

Quote List

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
Reset
{% if quotations %} {%if request.user.role != 4 %} {% endif%} {% for quotation in quotations %} {% if quotation.required_send_to_admin == 1 %} {% else %} {% endif %} {% if quotation.status == 5 and quotation.sent_mail_admin == 1 %} {% elif quotation.sent_mail_admin != 1 and quotation.required_send_to_admin == 1 %} {% elif quotation.sent_mail_admin == 1 and quotation.sent_mail_customer != 1 %} {% elif quotation.status == 4 %} {% else %} {% endif %} {% endfor %}
ID (VER) Customer Status Total Notify AdminNotify Customer Notify Broker Quote PDF Quote By Actions
{{quotation.id}} ({{quotation.latest_version}}) {% if quotation.customer %} {{ quotation.customer }} {% endif %} {{quotation.total_amount}} - - -- -- - {% if quotation.pdf_file %} {% endif %} {% if quotation.quote_by %} {{ quotation.quote_by.userinfo.first_name }} {{ quotation.quote_by.userinfo.last_name }} {% else %} - {% endif %}
{% if quotation.quote_date %} {{quotation.quote_date|date:"d-m-Y"}} {% endif %}
{% if quotation.status == 2 %} Add Invoice {% elif quotation.status <= 2 or quotation.status == 5 or quotation.sent_mail_admin == 1 and quotation.admin_response_mail != 1 %} Select {% else %} Select {% endif %}
{% else %} No Record Found. {% endif %}
{% endblock content %} {% block script %} {% endblock script %}