{% extends "base.html" %} {% load i18n static %} {% block title %}{{ _("Quotations") }}{% endblock title %} {% block content %}
| {% trans "Quotation Number" %} | {% trans "Customer" %} | {% trans "Status" %} | {% trans "Status Date" %} | {% trans "Created" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|
| {{ estimate.estimate_number }} | {{ estimate.customer.customer_name }} | {% if estimate.status == 'draft' %} {% trans "Draft" %} {% elif estimate.status == 'in_review' %} {% trans "In Review" %} {% elif estimate.status == 'approved' %} {% trans "Approved" %} {% elif estimate.status == 'declined' %} {% trans "Declined" %} {% elif estimate.status == 'canceled' %} {% trans "Canceled" %} {% elif estimate.status == 'completed' %} {% trans "Completed" %} {% elif estimate.status == 'void' %} {% trans "Void" %} {% endif %} | {{ estimate.get_status_action_date }} | {{ estimate.created }} | {% trans "view"|capfirst %} {% trans "pdf"|capfirst %} |
| {% trans "No Quotations Found" %} | |||||