diff --git a/InvenTree/part/templates/part/category_delete.html b/InvenTree/part/templates/part/category_delete.html
index 7814317356..8b6d5618f3 100644
--- a/InvenTree/part/templates/part/category_delete.html
+++ b/InvenTree/part/templates/part/category_delete.html
@@ -1,41 +1,33 @@
-{% extends 'delete_obj.html' %}
-
-{% block del_title %}
Are you sure you want to delete category '{{ category.name }}'?
-{% endblock %}
-{% block del_body %}
+{% if category.children.all|length > 0 %}
+
This category contains {{ category.children.all|length }} child categories.
+If this category is deleted, these child categories will be moved to
+{% if category.parent %}
+the '{{ category.parent.name }}' category.
+{% else %}
+the top level 'Parts' category.
+{% endif %}
+
- {% if category.children.all|length > 0 %}
-
This category contains {{ category.children.all|length }} child categories.
- If this category is deleted, these child categories will be moved to
+
This category contains {{ category.parts.all|length }} parts.
{% if category.parent %}
- the '{{ category.parent.name }}' category.
+ If this category is deleted, these parts will be moved to the parent category '{{ category.parent.pathstring }}'
{% else %}
- the top level 'Parts' category.
+ If this category is deleted, these parts will be moved to the top-level category 'Parts'
{% endif %}
-
This category contains {{ category.parts.all|length }} parts.
- {% if category.parent %}
- If this category is deleted, these parts will be moved to the parent category '{{ category.parent.pathstring }}'
- {% else %}
- If this category is deleted, these parts will be moved to the top-level category 'Parts'
- {% endif %}
-
-
- {% for part in category.parts.all %}
-
{{ part.name }} - {{ part.description }}
- {% endfor %}
-
- {% endif %}
-
-{% endblock %}
\ No newline at end of file
+
+