From cd5844b050cf380fc6d7e77e9f0eb7c9ec1aec27 Mon Sep 17 00:00:00 2001 From: jeremystretch Date: Tue, 30 Aug 2022 08:59:50 -0400 Subject: [PATCH] Fixes #10208: Fix permissions evaluation for interface actions dropdown menu --- docs/release-notes/version-3.3.md | 1 + netbox/dcim/tables/template_code.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/release-notes/version-3.3.md b/docs/release-notes/version-3.3.md index ab3d63025..e5e5eec96 100644 --- a/docs/release-notes/version-3.3.md +++ b/docs/release-notes/version-3.3.md @@ -12,6 +12,7 @@ * [#10177](https://github.com/netbox-community/netbox/issues/10177) - Correct display of custom fields when editing VM interfaces * [#10178](https://github.com/netbox-community/netbox/issues/10178) - Display manufacturer name alongside device type under device view * [#10181](https://github.com/netbox-community/netbox/issues/10181) - Restore MultiPartParser (regression from #10031) +* [#10208](https://github.com/netbox-community/netbox/issues/10208) - Fix permissions evaluation for interface actions dropdown menu --- diff --git a/netbox/dcim/tables/template_code.py b/netbox/dcim/tables/template_code.py index 8b6ac90b5..ffc867e78 100644 --- a/netbox/dcim/tables/template_code.py +++ b/netbox/dcim/tables/template_code.py @@ -226,7 +226,7 @@ POWEROUTLET_BUTTONS = """ """ INTERFACE_BUTTONS = """ -{% if perms.dcim.edit_interface %} +{% if perms.dcim.change_interface %}