diff --git a/InvenTree/part/templates/part/part_base.html b/InvenTree/part/templates/part/part_base.html
index 4da8ec7ffe..0bb3687fc8 100644
--- a/InvenTree/part/templates/part/part_base.html
+++ b/InvenTree/part/templates/part/part_base.html
@@ -108,11 +108,18 @@
{% include "part/stock_count.html" %} |
{% if not part.is_template %}
- {% if part.allocation_count > 0 %}
+ {% if part.build_order_allocation_count > 0 %}
|
- {% trans "Allocated" %} |
- {% decimal part.allocation_count %} |
+ {% trans "Allocated to Build Orders" %} |
+ {% decimal part.build_order_allocation_count %} |
+
+ {% endif %}
+ {% if part.sales_order_allocation_count > 0 %}
+
+ |
+ {% trans "Allocated to Sales Orders" %} |
+ {% decimal part.sales_order_allocation_count %} |
{% endif %}
{% if part.on_order > 0 %}