diff --git a/InvenTree/part/templates/part/part_base.html b/InvenTree/part/templates/part/part_base.html
index 8470677487..cc1ed3df9f 100644
--- a/InvenTree/part/templates/part/part_base.html
+++ b/InvenTree/part/templates/part/part_base.html
@@ -4,12 +4,24 @@
{% block content %}
+{% if part.active == False %}
+
+ This part is not active:
+
+{% endif %}
+{% if part.has_variants %}
+
+ This part is a template part.
+ It is not a real part, but real parts can be based on this template.
+
+{% endif %}
+{% if part.variant_of %}
+
+{% endif %}
+
- {% if part.active == False %}
-
- This part ({{ part.full_name }}) is not active:
-
- {% endif %}