Linkify VLAN name in VLAN tables #5692

Closed
opened 2025-12-29 19:31:33 +01:00 by adam · 0 comments
Owner

Originally created by @rhyser9 on GitHub (Nov 19, 2021).

Originally assigned to: @rhyser9 on GitHub.

NetBox version

v3.0.11-dev

Feature type

New functionality

Proposed functionality

Make the VLAN name in the VLANs list view and the VLAN Group > VLANs table clickable to access the VLAN detail page.

I believe this is simply a matter of adding the following snippet to VLANTable in netbox/ipam/tables/vlans.py

    name = tables.Column(
        linkify=True
    )

Use case

Currently, only the VLAN ID is clickable. This can be a decently small target for the mouse cursor. By making the VLAN name clickable as well, it's easier to click through to a specific VLAN.

Database changes

No response

External dependencies

No response

Originally created by @rhyser9 on GitHub (Nov 19, 2021). Originally assigned to: @rhyser9 on GitHub. ### NetBox version v3.0.11-dev ### Feature type New functionality ### Proposed functionality Make the VLAN name in the VLANs list view and the VLAN Group > VLANs table clickable to access the VLAN detail page. I believe this is simply a matter of adding the following snippet to `VLANTable` in `netbox/ipam/tables/vlans.py` ``` name = tables.Column( linkify=True ) ``` ### Use case Currently, only the VLAN ID is clickable. This can be a decently small target for the mouse cursor. By making the VLAN name clickable as well, it's easier to click through to a specific VLAN. ### Database changes _No response_ ### External dependencies _No response_
adam added the status: acceptedtype: feature labels 2025-12-29 19:31:33 +01:00
adam closed this issue 2025-12-29 19:31:33 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#5692