{% extends "base.html" %} {% block content %}

{% if current_car %} Просмотр автомобиля {% else %} Регистрация автомобиля {% endif %}

{% if errors %} {% endif %}

Все автомобили на стоянке

{% for car in cars|sort(attribute="brand")|sort(attribute="model")|sort(attribute="price") %} {% endfor %}
Марка Модель Цена Владелец Действия
{{ car.brand }} {{ car.model }} {{ car.price }} Перейти к владельцу
{% endblock %} {% block script %} {% endblock %}