From ce8c1490c841ab1979b6b32f1747953f6250421a Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 27 Jun 2025 13:42:04 -0400 Subject: [PATCH] Restore clone button --- netbox/templates/generic/object.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/netbox/templates/generic/object.html b/netbox/templates/generic/object.html index 67a434716..4851dc3e6 100644 --- a/netbox/templates/generic/object.html +++ b/netbox/templates/generic/object.html @@ -80,6 +80,9 @@ Context: {% if perms.extras.add_subscription and object.subscriptions %} {% subscribe_button object %} {% endif %} + {% if request.user|can_add:object %} + {% clone_button object %} + {% endif %} {% for name, action in actions.items %} {% action_button action object %} {% endfor %}