{% block content %}

Добавить автомобиль

{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
{% csrf_token %}
{{ form.brand }} {% if form.brand.errors %}
{{ form.brand.errors }}
{% endif %}
{{ form.model }} {% if form.model.errors %}
{{ form.model.errors }}
{% endif %}
{{ form.year }} {% if form.year.errors %}
{{ form.year.errors }}
{% endif %}
{{ form.color }} {% if form.color.errors %}
{{ form.color.errors }}
{% endif %}
Отмена
{% endblock %}