From 79df3da4cc7dfe10814c1a5bda4b95277162595c Mon Sep 17 00:00:00 2001 From: Faheedkhan Date: Sun, 25 May 2025 15:09:45 +0300 Subject: [PATCH] added the car list inventory ready field --- templates/inventory/car_list_view.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/templates/inventory/car_list_view.html b/templates/inventory/car_list_view.html index 30262dbc..2c47a3f4 100644 --- a/templates/inventory/car_list_view.html +++ b/templates/inventory/car_list_view.html @@ -167,6 +167,7 @@ {{ _("Color") }} {{ _("Date Received") }} {{ _("Status") }} + {{ _("Inventory Ready") }} @@ -216,6 +217,13 @@ {{ _("Transfer") }} {% endif %} + + {% if not car.ready %} + {{ _("NO") }} + {%else%} + {{ _("YES") }} + {%endif%} +