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

Estimate

{% if estimate.status == 'draft' %} Send Estimate {% endif %} {% if estimate.status == 'in_review' %} {% endif %} {% if estimate.status == 'approved' %} {% endif %} Preview
Estimate No :

#{{estimate.estimate_number}}

Estimate Date :

{{estimate.created}}

Customer :

{{estimate.customer.customer_name}}

Email :

{{estimate.customer.email}}

Estimate Status :
{% if estimate.status == 'draft' %} Draft {% elif estimate.status == 'in_review' %} Sent {% elif estimate.status == 'approved' %} Approved {% elif estimate.status == 'declined' %} Declined {% endif %}
{% for item in estimate.get_itemtxs_data.0 %} {% endfor %}
# Item Quantity Unit Price Total
{{forloop.counter}} {{item.item_model.name}} {{item.ce_quantity}} {{item.ce_unit_cost_estimate}} {{item.ce_total_amount}}
Vat ({{vat}}%) {{vat_amount}}
Grand Total {{total}}
{% endblock %} {% block extra_js %} {% endblock %}