{% extends "base.html" %} {% load crispy_forms_filters %} {% load i18n static %} {% block title %} {{ _("Create Quotation") }} {% endblock title %} {% block content %}
{% if not items %} {% url "car_add" request.dealer.slug as create_car_url %} {% include "message-illustration.html" with value1="Please add at least one car before creating a quotation." value2="Add car" message_image="images/logos/no-content-new.jpg" url=create_car_url %} {% endif %}
{% if not customer_count %} {% url "customer_create" request.dealer.slug as create_customer_url %} {% include "message-illustration.html" with value1="Please add at least one customer before creating a quotation." value2="Add Customer" message_image="images/logos/no-content-new.jpg" url=create_customer_url %} {% endif %}

{% trans "Create Quotation" %}

{% csrf_token %}
{{ form|crispy }}
Select a car
{% for item in items %}
{{item.model}} {{item.vin}} {{item.make}} {{item.model}} {{item.serie}} {{item.trim}} {{item.color_name}}
({{item.hash_count}} in stock)
{% endfor %}

{% trans "Cancel" %}
{% endblock %} {% block customJS %} {% endblock %}