diff --git a/InvenTree/stock/templates/stock/item_base.html b/InvenTree/stock/templates/stock/item_base.html
index 37ff88073b..e969ac482f 100644
--- a/InvenTree/stock/templates/stock/item_base.html
+++ b/InvenTree/stock/templates/stock/item_base.html
@@ -14,7 +14,7 @@
{% block heading %}
{% trans "Stock Item" %}: {{ item.part.full_name}}
-{% endblock %}
+{% endblock heading %}
{% block actions %}
@@ -118,36 +118,94 @@
{% endif %}
{% endif %}
-{% endblock %}
+{% endblock actions %}
{% block thumbnail %}
-{% endblock %}
+{% endblock thumbnail %}
{% block details %}
+
+
+
+ |
+ {% trans "Base Part" %} |
+
+ {% if roles.part.view %}
+
+ {% endif %}
+ {{ item.part.full_name }}
+ {% if roles.part.view %}
+
+ {% endif %}
+ |
+
+ {% if item.serialized %}
+
+ |
+ {% trans "Serial Number" %} |
+
+ {% if previous %}
+
+ {{ previous.serial }} ‹
+
+ {% endif %}
+ {{ item.serial }}
+ {% if next %}
+
+ › {{ next.serial }}
+
+ {% endif %}
+ |
+
+ {% else %}
+
+ |
+ {% trans "Quantity" %} |
+ {% decimal item.quantity %} {% if item.part.units %}{{ item.part.units }}{% endif %} |
+
+ {% endif %}
+
+ |
+ {% trans "Status" %} |
+ {% stock_status_label item.status %} |
+
+ {% if item.expiry_date %}
+
+ |
+ {% trans "Expiry Date" %} |
+
+ {{ item.expiry_date }}
+ {% if item.is_expired %}
+ {% trans "Expired" %}
+ {% elif item.is_stale %}
+ {% trans "Stale" %}
+ {% endif %}
+ |
+
+ {% endif %}
+
+ |
+ {% trans "Last Updated" %} |
+ {{ item.updated }} |
+
+
+ |
+ {% trans "Last Stocktake" %} |
+ {% if item.stocktake_date %}
+ {{ item.stocktake_date }} {{ item.stocktake_user }} |
+ {% else %}
+ {% trans "No stocktake performed" %} |
+ {% endif %}
+
+
+
{% setting_object 'STOCK_OWNERSHIP_CONTROL' as owner_control %}
{% if owner_control.value == "True" %}
{% authorized_owners item.owner as owners %}
{% endif %}
-
-
{% setting_object 'STOCK_OWNERSHIP_CONTROL' as owner_control %}
@@ -212,49 +270,12 @@
{% endif %}
-{% endblock %}
+{% endblock details %}
{% block details_right %}
-
+
-
- |
- {% trans "Base Part" %} |
-
- {% if roles.part.view %}
-
- {% endif %}
- {{ item.part.full_name }}
- {% if roles.part.view %}
-
- {% endif %}
- |
-
- {% if item.serialized %}
-
- |
- {% trans "Serial Number" %} |
-
- {% if previous %}
-
- {{ previous.serial }} ‹
-
- {% endif %}
- {{ item.serial }}
- {% if next %}
-
- › {{ next.serial }}
-
- {% endif %}
- |
-
- {% else %}
-
- |
- {% trans "Quantity" %} |
- {% decimal item.quantity %} {% if item.part.units %}{{ item.part.units }}{% endif %} |
-
- {% endif %}
+
{% if item.customer %}
|
@@ -374,39 +395,6 @@
{{ item.supplier_part.SKU }} |
{% endif %}
- {% if item.expiry_date %}
-
- |
- {% trans "Expiry Date" %} |
-
- {{ item.expiry_date }}
- {% if item.is_expired %}
- {% trans "Expired" %}
- {% elif item.is_stale %}
- {% trans "Stale" %}
- {% endif %}
- |
-
- {% endif %}
-
- |
- {% trans "Last Updated" %} |
- {{ item.updated }} |
-
-
- |
- {% trans "Last Stocktake" %} |
- {% if item.stocktake_date %}
- {{ item.stocktake_date }} {{ item.stocktake_user }} |
- {% else %}
- {% trans "No stocktake performed" %} |
- {% endif %}
-
-
- |
- {% trans "Status" %} |
- {% stock_status_label item.status %} |
-
{% if item.hasRequiredTests %}
|