{% extends "base.html" %} {% load i18n %} {% load custom_filters %} {% block customCSS %} {% endblock customCSS %} {% block content %}
{% for car in page_obj %} {% endfor %}
{{ _("Make") }} {{ _("Model") }} {{ _("Year") }} {{ _("Trim") }} {{ _("VIN") }} {{ _("Age") }} {{ _("Status") }}
{{car.id_car_make}}

{{car.id_car_model}}

{{car.year}}

{{car.id_car_trim}}

{{car.vin}}

{{car.receiving_date|timesince}}

{% 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 is_paginated %} {% include 'partials/pagination.html' %} {% endif %}
{% endblock %} {% block customJS %} {% endblock customJS %}