mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-05 07:08:16 -06:00
17569 Add help text to VLAN Group that is not saved on the interface
This commit is contained in:
parent
6b219a279b
commit
59815bb0f5
@ -1351,7 +1351,8 @@ class InterfaceForm(InterfaceCommonForm, ModularDeviceComponentForm):
|
|||||||
vlan_group = DynamicModelChoiceField(
|
vlan_group = DynamicModelChoiceField(
|
||||||
queryset=VLANGroup.objects.all(),
|
queryset=VLANGroup.objects.all(),
|
||||||
required=False,
|
required=False,
|
||||||
label=_('VLAN group')
|
label=_('VLAN group'),
|
||||||
|
help_text=_("Used only to filter tagged and untagged VLANs below. This is not saved on the interface.")
|
||||||
)
|
)
|
||||||
untagged_vlan = DynamicModelChoiceField(
|
untagged_vlan = DynamicModelChoiceField(
|
||||||
queryset=VLAN.objects.all(),
|
queryset=VLAN.objects.all(),
|
||||||
|
Loading…
Reference in New Issue
Block a user