diff --git a/netbox/templates/dcim/inc/consoleport.html b/netbox/templates/dcim/inc/consoleport.html
index 43b353bb1..e6c816780 100644
--- a/netbox/templates/dcim/inc/consoleport.html
+++ b/netbox/templates/dcim/inc/consoleport.html
@@ -1,5 +1,5 @@
- {% if selectable and perms.dcim.delete_consoleport %}
+ {% if selectable and perms.dcim.change_consoleport or perms.dcim.delete_consoleport %}
diff --git a/netbox/templates/dcim/inc/consoleserverport.html b/netbox/templates/dcim/inc/consoleserverport.html
index b9c5e8e59..d3c923e43 100644
--- a/netbox/templates/dcim/inc/consoleserverport.html
+++ b/netbox/templates/dcim/inc/consoleserverport.html
@@ -1,5 +1,5 @@
- {% if selectable and perms.dcim.delete_consoleserverport %}
+ {% if selectable and perms.dcim.change_consoleserverport or perms.dcim.delete_consoleserverport %}
diff --git a/netbox/templates/dcim/inc/devicebay.html b/netbox/templates/dcim/inc/devicebay.html
index 8996cd225..eacb27440 100644
--- a/netbox/templates/dcim/inc/devicebay.html
+++ b/netbox/templates/dcim/inc/devicebay.html
@@ -1,5 +1,5 @@
- {% if selectable and perms.dcim.delete_devicebay %}
+ {% if selectable and perms.dcim.change_devicebay or perms.dcim.delete_devicebay %}
diff --git a/netbox/templates/dcim/inc/interface.html b/netbox/templates/dcim/inc/interface.html
index dc7ac4ecf..bfb44b75d 100644
--- a/netbox/templates/dcim/inc/interface.html
+++ b/netbox/templates/dcim/inc/interface.html
@@ -1,5 +1,5 @@
- {% if selectable and perms.dcim.delete_interface %}
+ {% if selectable and perms.dcim.change_interface or perms.dcim.delete_interface %}
diff --git a/netbox/templates/dcim/inc/poweroutlet.html b/netbox/templates/dcim/inc/poweroutlet.html
index 18619a37d..241ebc15c 100644
--- a/netbox/templates/dcim/inc/poweroutlet.html
+++ b/netbox/templates/dcim/inc/poweroutlet.html
@@ -1,5 +1,5 @@
- {% if selectable and perms.dcim.delete_poweroutlet %}
+ {% if selectable and perms.dcim.change_poweroutlet or perms.dcim.delete_poweroutlet %}
diff --git a/netbox/templates/dcim/inc/powerport.html b/netbox/templates/dcim/inc/powerport.html
index 7d519599d..aacb96839 100644
--- a/netbox/templates/dcim/inc/powerport.html
+++ b/netbox/templates/dcim/inc/powerport.html
@@ -1,5 +1,5 @@
- {% if selectable and perms.dcim.delete_powerport %}
+ {% if selectable and perms.dcim.change_powerport or perms.dcim.delete_powerport %}