diff --git a/InvenTree/part/templates/part/category.html b/InvenTree/part/templates/part/category.html index f48e06e6d7..c3477f47c2 100644 --- a/InvenTree/part/templates/part/category.html +++ b/InvenTree/part/templates/part/category.html @@ -8,9 +8,6 @@ {% if category %}

{{ category.name }}

{{ category.description }}

- {% if category.default_location %} -

Default Location: {{ category.default_location }}

- {% endif %} {% else %}

Part Categories

All parts

@@ -32,6 +29,31 @@

+ {% if category %} +

Category Details

+ + + + + + + + + + {% if category.default_location %} + + + + + {% endif %} + {% if category.default_keywords %} + + + + + {% endif %} +
Category Path{{ category.pathstring }}
Category Description{{ category.description }}
Default Location{{ category.default_location.pathstring }}
Keywords{{ category.default_keywords }}
+ {% endif %}