diff --git a/InvenTree/part/templates/part/detail.html b/InvenTree/part/templates/part/detail.html
index b340ec35c5..7524874a28 100644
--- a/InvenTree/part/templates/part/detail.html
+++ b/InvenTree/part/templates/part/detail.html
@@ -25,74 +25,82 @@
-
-
- Part name |
- {{ part.name }} |
-
-
- Description |
- {{ part.description }} |
-
-{% if part.IPN %}
-
- IPN |
- {{ part.IPN }} |
-
-{% endif %}
-
- Category |
-
- {% if part.category %}
- {{ part.category.pathstring }}
- {% endif %}
- |
-
-{% if part.default_location %}
-
- Default Location |
- {{ part.default_location.pathstring }} |
-
-{% endif %}
-{% if part.default_supplier %}
-
- Default Supplier |
-
- {{ part.default_supplier.supplier.name }} | {{ part.default_supplier.SKU }}
- |
-
-{% endif %}
-
- 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 |
- {{ part.minimum_stock }} |
-
-{% endif %}
-
+
+
+
+
+
+ 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 |
+ {{ part.minimum_stock }} |
+
+ {% endif %}
+
+
+
{% if part.notes %}