{% extends "base.html" %} {% load i18n %} {% load custom_filters %} {%block title%} {%trans 'Sales'%} {%endblock%} {% block customCSS %} {% endblock customCSS %} {% block content %}
| {{ _("Customer Name")}} | {{ _("Customer Address")}} | {{ _("Customer Phone")}} | {{ _("Make") }} | {{ _("Model") }} | {{ _("VIN") }} | {{ _("Trim") }} | {{ _("Price") }} | {{ _("Quotation") }} | {{ _("Invoice") }} | {{ _("Status") }} | {{ _("Staff Member") }} | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
{{tx.customer}} |
{{tx.customer.address}} |
{{tx.customer.phone_number}} |
{{tx.info.make}} |
{{tx.info.model}} |
{{tx.info.vin}} |
{{tx.info.trim}} |
{{tx.finance.total}} |
{% if tx.estimate %}
{{tx.estimate.estimate_number}}
|
{% if tx.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 %} |