+
+{% endblock %}
\ No newline at end of file
diff --git a/InvenTree/part/templates/cat_link.html b/InvenTree/part/templates/part/cat_link.html
similarity index 82%
rename from InvenTree/part/templates/cat_link.html
rename to InvenTree/part/templates/part/cat_link.html
index aff374a4d7..b227797339 100644
--- a/InvenTree/part/templates/cat_link.html
+++ b/InvenTree/part/templates/part/cat_link.html
@@ -1,4 +1,4 @@
-
+
All >
{% for path_item in category.parentpath %}
{{ path_item.name }} >
diff --git a/InvenTree/part/templates/part/detail.html b/InvenTree/part/templates/part/detail.html
new file mode 100644
index 0000000000..90c7cf2534
--- /dev/null
+++ b/InvenTree/part/templates/part/detail.html
@@ -0,0 +1,12 @@
+{% extends "part/part_base.html" %}
+
+{% block details %}
+
+
+There are {{ part.bomItemCount }} BOM items for this part.
+
+Used in {{ part.usedInCount }} other parts.
+
+There are {{ part.stock }} units in stock.
+
+{% endblock %}
\ No newline at end of file
diff --git a/InvenTree/part/templates/index.html b/InvenTree/part/templates/part/index.html
similarity index 78%
rename from InvenTree/part/templates/index.html
rename to InvenTree/part/templates/part/index.html
index 96796f017c..7363000601 100644
--- a/InvenTree/part/templates/index.html
+++ b/InvenTree/part/templates/part/index.html
@@ -1,7 +1,11 @@
+{% extends "part/base.html" %}
+
+{% block content %}
+
Parts page!
{% if category %}
-{% include "cat_link.html" with category=category %}
+{% include "part/cat_link.html" with category=category %}
Child categories
{% for child in category.children.all %}
@@ -25,3 +29,5 @@ No category!
{% endfor %}
+{% endblock %}
+
diff --git a/InvenTree/part/templates/part/navbar.html b/InvenTree/part/templates/part/navbar.html
new file mode 100644
index 0000000000..f85b8fb541
--- /dev/null
+++ b/InvenTree/part/templates/part/navbar.html
@@ -0,0 +1,22 @@
+{% load static %}
+
+
\ No newline at end of file
diff --git a/InvenTree/part/templates/part/part_base.html b/InvenTree/part/templates/part/part_base.html
new file mode 100644
index 0000000000..a54913aaa7
--- /dev/null
+++ b/InvenTree/part/templates/part/part_base.html
@@ -0,0 +1,21 @@
+{% extends "part/base.html" %}
+
+{% block content %}
+
+{% include "part/cat_link.html" with category=part.category %}
+
+{{ part.name }}
+
+
+{{ part.description }}
+
+IPN: {% if part.IPN %}{{ part.IPN }}{% else %}N/A{% endif %}
+
+
+{% block details %}
+
+
+
+{% endblock %}
+
+{% endblock %}
\ No newline at end of file
diff --git a/InvenTree/part/templates/part/stock.html b/InvenTree/part/templates/part/stock.html
new file mode 100644
index 0000000000..6011f933a4
--- /dev/null
+++ b/InvenTree/part/templates/part/stock.html
@@ -0,0 +1,32 @@
+{% extends "part/part_base.html" %}
+
+{% block details %}
+
+
+Total in stock: {{ part.stock }}
+
+
+