{% endif %}
diff --git a/InvenTree/part/templates/part/track.html b/InvenTree/part/templates/part/track.html
index 1262736ea2..6ce8c8429e 100644
--- a/InvenTree/part/templates/part/track.html
+++ b/InvenTree/part/templates/part/track.html
@@ -6,7 +6,7 @@
Part tracking for {{ part.name }}
-
+
Serial
Status
diff --git a/InvenTree/part/templates/part/used_in.html b/InvenTree/part/templates/part/used_in.html
index 6cd1f07dc1..1168f0c26b 100644
--- a/InvenTree/part/templates/part/used_in.html
+++ b/InvenTree/part/templates/part/used_in.html
@@ -6,7 +6,7 @@
This part is used to make the following parts:
-
-{% else %}
-There are no parts in this location.
+{% include "stock/stock_table.html" with items=items %}
{% endif %}
+
{% endblock %}
\ No newline at end of file
diff --git a/InvenTree/stock/templates/stock/item.html b/InvenTree/stock/templates/stock/item.html
new file mode 100644
index 0000000000..8b7c80e5f9
--- /dev/null
+++ b/InvenTree/stock/templates/stock/item.html
@@ -0,0 +1,48 @@
+{% extends "base.html" %}
+
+{% block content %}
+
+{% include "stock/loc_link.html" with location=item.location %}
+
+
+
+
+{% include "stock/location_list.html" with locations=location.children %}
+
+{% include "stock/stock_table.html" with items=location.items %}
+
+{% endblock %}
\ No newline at end of file
diff --git a/InvenTree/stock/templates/stock/location_list.html b/InvenTree/stock/templates/stock/location_list.html
new file mode 100644
index 0000000000..d4804bffdb
--- /dev/null
+++ b/InvenTree/stock/templates/stock/location_list.html
@@ -0,0 +1,6 @@
+Storage locations:
+
\ No newline at end of file
diff --git a/InvenTree/stock/templates/stock/stock_table.html b/InvenTree/stock/templates/stock/stock_table.html
new file mode 100644
index 0000000000..d3684ffe63
--- /dev/null
+++ b/InvenTree/stock/templates/stock/stock_table.html
@@ -0,0 +1,18 @@
+