diff --git a/InvenTree/part/templates/part/detail.html b/InvenTree/part/templates/part/detail.html
index a37ad5823d..5b69ccb193 100644
--- a/InvenTree/part/templates/part/detail.html
+++ b/InvenTree/part/templates/part/detail.html
@@ -83,6 +83,22 @@
{{ part.minimum_stock }} |
{% endif %}
+
+ {% trans "Creation Date" %} |
+ {{ part.creation_date }} |
+
+ {% if part.creation_user %}
+
+ {% trans "Created By" %} |
+ {{ part.creation_user }} |
+
+ {% endif %}
+ {% if part.responsible %}
+
+ {% trans "Responsible User" %} |
+ {{ part.responsible }} |
+
+ {% endif %}