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%} +