{% extends "base.html" %} {% load i18n %} {% load custom_filters %} {% block customCSS %} {% endblock customCSS %} {% block content %}
| {{ _("Customer Name")}} | {{ _("Customer Address")}} | {{ _("Customer Phone")}} | {{ _("Make") }} | {{ _("Model") }} | {{ _("VIN") }} | {{ _("Trim") }} | {{ _("Price") }} | {{ _("Quotation") }} | {{ _("Invoice") }} | {{ _("Staff Member") }} | |
|---|---|---|---|---|---|---|---|---|---|---|---|
|
{{tx.customer.customer_name}} |
{{tx.customer.address_1}} |
{{tx.customer.phone}} |
{{tx.info.make}} |
{{tx.info.model}} |
{{tx.info.vin}} |
{{tx.info.trim}} |
{{tx.finance.total}} |
{% if tx.has_estimate %}
{{tx.estimate.estimate_number}}
|
{% if tx.has_invoice %}
{{tx.invoice.invoice_number}}
|
{% if car.status == "available" %} {{car.status}} {% elif car.status == "reserved" %} {{car.status}} {% elif car.status == "sold" %} {{car.status}} {% elif car.status == "transfer" %} {{car.status}} {% endif %} |