{% extends "base.html" %} {% load i18n %} {% load custom_filters %} {% block customCSS %} {% endblock customCSS %} {% block content %}
{% if page_obj.has_previous %} {% endif %}
    Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}
{% if page_obj.has_next %} {% endif %}
{% for car in cars %} {% endfor %}
Make Model Year Trim VIN Receiving Date STATUS
{{car.id_car_make}}

{{car.id_car_model}}

{{car.year}}

{{car.id_car_trim}}

{{car.vin}}

{{car.receiving_date}}

{% 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 %}
{% if page_obj.has_previous %} {% endif %}
    Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}
{% if page_obj.has_next %} {% endif %}
{% endblock %} {% block customJS %} {% endblock customJS %}