{% extends "base.html" %} {% load crispy_forms_filters %} {% load i18n static %} {% block title %}{{ _("Create Quotation") }}{% endblock title %} {% block customCSS %} {% endblock customCSS %} {% block content %}
{% if not items %} {% endif %} {% if not customer_count %} {% endif %}

{% trans "Create Quotation" %}

{% csrf_token %}
{{ form|crispy }}
Select a car
{% for item in items %}
{{item.model}} {{item.make}} {{item.model}} {{item.serie}} {{item.trim}} {{item.color_name}}
({{item.hash_count}} in stock)
{% endfor %}
{% trans "Cancel" %}
{% endblock content %} {% block customJS %} {% endblock customJS %}