Add Search filter to VLAN Group overview #4880

Closed
opened 2025-12-29 19:21:37 +01:00 by adam · 2 comments
Owner

Originally created by @rodvand on GitHub (May 5, 2021).

NetBox version

2.11.2

Feature type

New functionality

Proposed functionality

Add the ability to do a text search in the VLAN Group overview /ipam/vlan-groups/.

Use case

With a large number of VLAN groups the ability to search the vlan group name would be very useful.

Database changes

None

External dependencies

None

Originally created by @rodvand on GitHub (May 5, 2021). ### NetBox version 2.11.2 ### Feature type New functionality ### Proposed functionality Add the ability to do a text search in the VLAN Group overview <netbox>/ipam/vlan-groups/. ### Use case With a large number of VLAN groups the ability to search the vlan group name would be very useful. ### Database changes None ### External dependencies None
adam added the status: acceptedtype: feature labels 2025-12-29 19:21:37 +01:00
adam closed this issue 2025-12-29 19:21:37 +01:00
Author
Owner

@rodvand commented on GitHub (May 5, 2021):

I believe it would be a simple

q = forms.CharField(
        required=False,
        label='Search'
    )

in ipam/forms.py under VLANGroupFilterForm.

@rodvand commented on GitHub (May 5, 2021): I believe it would be a simple ``` q = forms.CharField( required=False, label='Search' ) ``` in `ipam/forms.py` under VLANGroupFilterForm.
Author
Owner

@jeremystretch commented on GitHub (May 6, 2021):

This requires the introduction of a q filter on VLANGroupFilterForm as well, to specify what fields are to be evaluated.

@jeremystretch commented on GitHub (May 6, 2021): This requires the introduction of a `q` filter on VLANGroupFilterForm as well, to specify what fields are to be evaluated.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#4880