diff --git a/docs/release-notes/version-3.3.md b/docs/release-notes/version-3.3.md index 7b23e242b..a19b54c06 100644 --- a/docs/release-notes/version-3.3.md +++ b/docs/release-notes/version-3.3.md @@ -8,7 +8,9 @@ * [#9935](https://github.com/netbox-community/netbox/issues/9935) - Add 802.11ay and "other" wireless interface types * [#10031](https://github.com/netbox-community/netbox/issues/10031) - Enforce `application/json` content type for REST API requests * [#10033](https://github.com/netbox-community/netbox/issues/10033) - Disable "add termination" button for point-to-point L2VPNs with two terminations -* [#10037](https://github.com/netbox-community/netbox/issues/10037) - Add link to create child interface to interface context menu +* [#10037](https://github.com/netbox-community/netbox/issues/10037) - Add "child interface" option to actions dropdown in interfaces list +* [#10038](https://github.com/netbox-community/netbox/issues/10038) - Add "L2VPN termination" option to actions dropdown in interfaces list +* [#10039](https://github.com/netbox-community/netbox/issues/10039) - Add "assign FHRP group" option to actions dropdown in interfaces list * [#10061](https://github.com/netbox-community/netbox/issues/10061) - Replicate type when cloning L2VPN instances * [#10066](https://github.com/netbox-community/netbox/issues/10066) - Use fixed column widths for custom field values in UI * [#10133](https://github.com/netbox-community/netbox/issues/10133) - Enable nullifying device location during bulk edit diff --git a/netbox/dcim/tables/template_code.py b/netbox/dcim/tables/template_code.py index 4b358a433..8b6ac90b5 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.ipam.add_ipaddress or perms.dcim.add_inventoryitem %} +{% if perms.dcim.edit_interface %} + + {% endif %} """