diff --git a/InvenTree/part/templates/part/category.html b/InvenTree/part/templates/part/category.html
deleted file mode 100644
index 8e999ea96c..0000000000
--- a/InvenTree/part/templates/part/category.html
+++ /dev/null
@@ -1,21 +0,0 @@
-{# Construct the category path #}
-<a href="../">Category</a>/
-{% for path_item in category.parentpath %}
-<a href="../{{ path_item.pk }}">{{ path_item.name }}</a>/
-{% endfor %}
-
-{{ category.name }}
-
-<br><br>Children:<br>
-{% for child in children %}
-<a href="/part/category/{{ child.pk }}">{{ child.name }}</a><br>
-{% endfor %}
-
-<br>
-<br>
-Parts:
-<br>
-
-{% for part in category.part_set.all %}
-<a href="/part/{{ part.pk }}">{{ part.name }}</a><br>
-{% endfor %}
diff --git a/InvenTree/part/templates/part/categorylist.html b/InvenTree/part/templates/part/categorylist.html
deleted file mode 100644
index c4c62ba58b..0000000000
--- a/InvenTree/part/templates/part/categorylist.html
+++ /dev/null
@@ -1,8 +0,0 @@
-Top Level Part Categories:
-
-{% for category in categories %}
-
-<br>
-<a href="./{{ category.pk }}">{{ category.name }}<a/>
-
-{% endfor %}
\ No newline at end of file
diff --git a/InvenTree/part/templates/part/detail.html b/InvenTree/part/templates/part/detail.html
deleted file mode 100644
index 8055f46023..0000000000
--- a/InvenTree/part/templates/part/detail.html
+++ /dev/null
@@ -1,4 +0,0 @@
-{{part}}
-
-<br>
-Category: <a href="/part/category/{{ part.category.pk}}">{{ part.category }}</a>
\ No newline at end of file
diff --git a/InvenTree/stock/templates/stock/index.html b/InvenTree/stock/templates/stock/index.html
deleted file mode 100644
index 234cd000dc..0000000000
--- a/InvenTree/stock/templates/stock/index.html
+++ /dev/null
@@ -1,8 +0,0 @@
-Warehouses:
-
-{% for warehouse in warehouse %}
-
-<br>
-<a href="./{{ warehouse.pk }}">{{ warehouse.name }}</a>
-
-{% endfor %}
\ No newline at end of file
diff --git a/InvenTree/supplier/templates/supplier/detail.html b/InvenTree/supplier/templates/supplier/detail.html
deleted file mode 100644
index 709ba79248..0000000000
--- a/InvenTree/supplier/templates/supplier/detail.html
+++ /dev/null
@@ -1 +0,0 @@
-{{ supplier }}
\ No newline at end of file