+
+ {% if part.is_template %}
+
+
+ {% endif %}
+ {% if part.assembly %}
+
+
+ {% endif %}
+ {% if part.component %}
+
+
+ {% endif %}
+ {% if part.trackable %}
+
+
+ {% endif %}
+ {% if part.purchaseable %}
+
+
+ {% endif %}
+ {% if part.salable %}
+
+
+ {% endif %}
+
+ {% if not part.active %}
+
+
+
+ {% trans 'Inactive' %}
+
+ {% endif %}
+
+ {% if part.virtual and part.active %}
+
+
+
+ {% trans 'Virtual' %}
+
+ {% endif %}
- {% endif %}
-
- {% if part.virtual and part.active %}
-
-
-
- {% trans 'Virtual' %}
-
- {% endif %}
+
+ {% include "spacer.html" %}
+
+
+{% endblock details_below %}
{% block js_ready %}
{{ block.super }}
diff --git a/InvenTree/part/templates/part/part_sidebar.html b/InvenTree/part/templates/part/part_sidebar.html
index c590c51c37..f4e59af865 100644
--- a/InvenTree/part/templates/part/part_sidebar.html
+++ b/InvenTree/part/templates/part/part_sidebar.html
@@ -5,8 +5,6 @@
{% settings_value "PART_INTERNAL_PRICE" as show_internal_price %}
{% settings_value 'PART_SHOW_RELATED' as show_related %}
-{% trans "Details" as text %}
-{% include "sidebar_item.html" with label="part-details" text=text icon="fa-shapes" %}
{% trans "Parameters" as text %}
{% include "sidebar_item.html" with label="part-parameters" text=text icon="fa-th-list" %}
{% if part.is_template %}
diff --git a/InvenTree/templates/page_base.html b/InvenTree/templates/page_base.html
index 506120972a..4e805142d2 100644
--- a/InvenTree/templates/page_base.html
+++ b/InvenTree/templates/page_base.html
@@ -24,6 +24,8 @@
{% block page_info %}
+ {% block details_above %}
+ {% endblock details_above %}
@@ -31,23 +33,25 @@
{% block thumbnail %}
- {% endblock %}
+ {% endblock thumbnail %}
{% block details %}
- {% endblock %}
+ {% endblock details %}
- {% endblock %}
+ {% endblock details_left %}
{% block details_right %}
block details_right
- {% endblock %}
+ {% endblock details_right %}
+ {% block details_below %}
+ {% endblock details_below %}