diff --git a/InvenTree/part/templates/part/detail.html b/InvenTree/part/templates/part/detail.html
index 9765a2574e..4522d47236 100644
--- a/InvenTree/part/templates/part/detail.html
+++ b/InvenTree/part/templates/part/detail.html
@@ -90,30 +90,6 @@
Units |
{{ part.units }} |
-
-
-
-
-
- Buildable |
- {% include "yesnolabel.html" with value=part.buildable %} |
-
-
- Consumable |
- {% include "yesnolabel.html" with value=part.consumable %} |
-
-
- Trackable |
- {% include "yesnolabel.html" with value=part.trackable %} |
-
-
- Purchaseable |
- {% include "yesnolabel.html" with value=part.purchaseable %} |
-
-
- Salable |
- {% include "yesnolabel.html" with value=part.salable %} |
-
{% if part.minimum_stock > 0 %}
Minimum Stock |
@@ -122,6 +98,40 @@
{% endif %}
+
+
+ {% if part.buildable %}
+
+ Assembly |
+ This part can be assembled from other parts |
+
+ {% endif %}
+ {% if part.consumable %}
+
+ Component |
+ This part can be used in assemblies |
+
+ {% endif %}
+ {% if part.trackable %}
+
+ Trackable |
+ Stock for this part will be tracked by (serial or batch) |
+
+ {% endif %}
+ {% if part.purchaseable %}
+
+ Purchaseable |
+ This part can be purchased from external suppliers |
+
+ {% endif %}
+ {% if part.salable %}
+
+ Salable |
+ This part can be sold to customers |
+
+ {% endif %}
+
+
{% if part.notes %}