1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #5526: Add MAC address search field to VM interfaces list

This commit is contained in:
Jeremy Stretch
2021-03-31 15:27:38 -04:00
parent b7309d5c69
commit f2f0ea8d04
2 changed files with 5 additions and 0 deletions

View File

@ -786,6 +786,10 @@ class VMInterfaceFilterForm(forms.Form):
choices=BOOLEAN_WITH_BLANK_CHOICES
)
)
mac_address = forms.CharField(
required=False,
label='MAC address'
)
tag = TagFilterField(model)