{% extends "base.html" %} {% load i18n static %} {% block title %}{{ _("Quotations") }}{% endblock title %} {% block content %}

{% trans "Quotations" %}

{% for estimate in estimates %} {% empty %} {% endfor %}
{% 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" %}
{% if is_paginated %} {% include 'partials/pagination.html' %} {% endif %}
{% endblock %}