diff --git a/InvenTree/part/templates/part/part_base.html b/InvenTree/part/templates/part/part_base.html index ceda740c16..79be275307 100644 --- a/InvenTree/part/templates/part/part_base.html +++ b/InvenTree/part/templates/part/part_base.html @@ -5,6 +5,11 @@ {% block content %}
+ {% if part.active == False %} +
+ This part ({{ part.name }}) is not active: +
+ {% endif %}
@@ -16,7 +21,7 @@ {% endif %}/>
-

{{ part.name }}

+

{{ part.name }}{% if part.active == False %} - INACTIVE{% endif %}

{% if part.description %}

{{ part.description }}

{% endif %}