{% extends 'base.html' %} {% load i18n static %} {% load crispy_forms_filters %} {% block title %} {% trans 'Sale Order' %} {% endblock %} {% block content %}
|
{{ _("Customer Name")}} |
: |
{{ estimate.customer.customer_name }} |
|
{{ _("Email") }} |
: |
{{ estimate.customer.email }} |
|
{{ _("Address") }} |
: |
{{ estimate.customer.address_1 }} |
|
{{ _("Total Discount")}} |
: |
{{ data.total_discount }} {{ CURRENCY }} |
|
{{ _("Total Amount")}} |
: |
{{ data.grand_total }} {{ CURRENCY }} |