Skip to content

Commit f2f0ea8

Browse files
committed
Closes #5526: Add MAC address search field to VM interfaces list
1 parent b7309d5 commit f2f0ea8

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

docs/release-notes/version-2.10.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
### Enhancements
66

7+
* [#5526](https://github.com/netbox-community/netbox/issues/5526) - Add MAC address search field to VM interfaces list
78
* [#6054](https://github.com/netbox-community/netbox/issues/6054) - Display NAPALM-enabled device tabs only when relevant
89

910
### Bug Fixes

netbox/virtualization/forms.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -786,6 +786,10 @@ class VMInterfaceFilterForm(forms.Form):
786786
choices=BOOLEAN_WITH_BLANK_CHOICES
787787
)
788788
)
789+
mac_address = forms.CharField(
790+
required=False,
791+
label='MAC address'
792+
)
789793
tag = TagFilterField(model)
790794

791795

0 commit comments

Comments
 (0)