diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4fec2d5ec..a0d243dab 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,7 @@ v2.5.10 (FUTURE)
## Bug Fixes
+* [#2937](https://github.com/digitalocean/netbox/issues/2937) - Redirect to list view after editing an object from list view
* [#3036](https://github.com/digitalocean/netbox/issues/3036) - DCIM interfaces API endpoint should not include VM interfaces
* [#3039](https://github.com/digitalocean/netbox/issues/3039) - Fix exception when retrieving change object for a component template via API
* [#3041](https://github.com/digitalocean/netbox/issues/3041) - Fix form widget for bulk cable label update
diff --git a/netbox/circuits/tables.py b/netbox/circuits/tables.py
index 1cddeffb2..60b6a7f7c 100644
--- a/netbox/circuits/tables.py
+++ b/netbox/circuits/tables.py
@@ -11,7 +11,7 @@ CIRCUITTYPE_ACTIONS = """
{% if perms.circuit.change_circuittype %}
-
+
{% endif %}
"""
diff --git a/netbox/dcim/tables.py b/netbox/dcim/tables.py
index 436b9053d..dd1f4f5f1 100644
--- a/netbox/dcim/tables.py
+++ b/netbox/dcim/tables.py
@@ -44,7 +44,7 @@ REGION_ACTIONS = """
{% if perms.dcim.change_region %}
-
+
{% endif %}
"""
@@ -56,7 +56,7 @@ RACKGROUP_ACTIONS = """
{% if perms.dcim.change_rackgroup %}
-
+
{% endif %}
@@ -67,7 +67,7 @@ RACKROLE_ACTIONS = """
{% if perms.dcim.change_rackrole %}
-
+
{% endif %}
"""
@@ -88,7 +88,7 @@ RACKRESERVATION_ACTIONS = """
{% if perms.dcim.change_rackreservation %}
-
+
{% endif %}
"""
@@ -97,7 +97,7 @@ MANUFACTURER_ACTIONS = """
{% if perms.dcim.change_manufacturer %}
-
+
{% endif %}
"""
@@ -106,7 +106,7 @@ DEVICEROLE_ACTIONS = """
{% if perms.dcim.change_devicerole %}
-
+
{% endif %}
"""
@@ -131,7 +131,7 @@ PLATFORM_ACTIONS = """
{% if perms.dcim.change_platform %}
-
+
{% endif %}
"""
@@ -168,7 +168,7 @@ VIRTUALCHASSIS_ACTIONS = """
{% if perms.dcim.change_virtualchassis %}
-
+
{% endif %}
"""
diff --git a/netbox/ipam/tables.py b/netbox/ipam/tables.py
index 3d46452b2..fb48dda24 100644
--- a/netbox/ipam/tables.py
+++ b/netbox/ipam/tables.py
@@ -30,7 +30,7 @@ RIR_ACTIONS = """
{% if perms.ipam.change_rir %}
-
+
{% endif %}
"""
@@ -52,7 +52,7 @@ ROLE_ACTIONS = """
{% if perms.ipam.change_role %}
-
+
{% endif %}
"""
@@ -152,7 +152,7 @@ VLANGROUP_ACTIONS = """
{% endif %}
{% endwith %}
{% if perms.ipam.change_vlangroup %}
-
+
{% endif %}
"""
diff --git a/netbox/secrets/tables.py b/netbox/secrets/tables.py
index a547ef4f8..1f937f54b 100644
--- a/netbox/secrets/tables.py
+++ b/netbox/secrets/tables.py
@@ -8,7 +8,7 @@ SECRETROLE_ACTIONS = """
{% if perms.secrets.change_secretrole %}
-
+
{% endif %}
"""
diff --git a/netbox/tenancy/tables.py b/netbox/tenancy/tables.py
index 2938a4aae..884bdc3df 100644
--- a/netbox/tenancy/tables.py
+++ b/netbox/tenancy/tables.py
@@ -8,7 +8,7 @@ TENANTGROUP_ACTIONS = """
{% if perms.tenancy.change_tenantgroup %}
-
+
{% endif %}
"""
diff --git a/netbox/virtualization/tables.py b/netbox/virtualization/tables.py
index f6cb06abd..6034dd8dc 100644
--- a/netbox/virtualization/tables.py
+++ b/netbox/virtualization/tables.py
@@ -11,7 +11,7 @@ CLUSTERTYPE_ACTIONS = """
{% if perms.virtualization.change_clustertype %}
-
+
{% endif %}
"""
@@ -20,7 +20,7 @@ CLUSTERGROUP_ACTIONS = """
{% if perms.virtualization.change_clustergroup %}
-
+
{% endif %}
"""