{% extends 'base.html' %} {% load i18n static %} {% load crispy_forms_filters %} {% block title %} {% trans 'Sale Order' %} {% endblock %} {% block content %}

{% if customer.created %} {{ _('Edit Sale Order') }} {% else %} {{ _('Add Sale Order') }} {% endif %}

{{ _("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 }}

{% for car in data.cars %} {% endfor %}
{{ _("VIN") }} {{ _("Make") }} {{ _("Model") }} {{ _("Year") }} {{ _("Unit Price")}}
{% comment %}
{% endcomment %}
{{car.vin}}
{{car.make}} {{car.model}} {{car.year}}
{{car.total}} {{ CURRENCY }}
{% csrf_token %}
{% trans "Please provide an estimate." %}
{% trans "Please select a payment method." %}
{% endblock %}