{% extends "base.html" %} {% load i18n %} {% block title %}{{ _("View Estimate") }}{% endblock title %} {% block content %} Estimate Send Estimate Mark As Sent 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 == 'sent' %} Sent {% elif estimate.status == 'approved' %} Approved {% elif estimate.status == 'declined' %} Declined {% endif %} # Item Quantity Unit Price Total {% for item in estimate.get_itemtxs_data.0 %} {{forloop.counter}} {{item.item_model.name}} {{item.ce_quantity}} {{item.ce_unit_cost_estimate}} {{item.ce_total_amount}} {% endfor %} Grand Total 0.00 {% endblock %} {% block extra_js %} {% endblock %}
#{{estimate.estimate_number}}
{{estimate.created}}
{{estimate.customer.customer_name}}
{{estimate.customer.email}}