diff --git a/InvenTree/part/templates/part/part_base.html b/InvenTree/part/templates/part/part_base.html
index c97423ed86..36283caeca 100644
--- a/InvenTree/part/templates/part/part_base.html
+++ b/InvenTree/part/templates/part/part_base.html
@@ -32,7 +32,7 @@
{{ part.URL }} |
{% endif %}
-
+
@@ -95,4 +95,17 @@
}
);
});
+
+ $("#duplicate-part").click(function() {
+ launchModalForm(
+ "{% url 'part-create' %}",
+ {
+ follow: true,
+ data: {
+ copy_part: {{ part.id }},
+ },
+ }
+ );
+ });
+
{% endblock %}
\ No newline at end of file