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

Quote Version List

Quote ID: {{ quotation_id}}

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% if quotation_versions %} {% for quotation in quotation_versions %} {% if quotation.quote_date %} {%else%} {% endif %} {% endfor %}
# Version Customer Name Quote By Status Total Date System Documents
{{forloop.counter}} {{quotation.version_number}} {{ quotation.customer }} {% if quotation.quote_by %} {{ quotation.quote_by }} {% else %} - {% endif %} {{quotation.total}} {{quotation.quote_date|date:"d-m-Y"}} {% if quotation.pdf_file %} {% endif %}
{% else %} No Record Found. {% endif %}
{% endblock content %} {% block script %} {% endblock script %}