17569 Add help text to VLAN Group that is not saved on the interface

This commit is contained in:
Arthur Hanson 2024-09-23 11:19:13 -07:00
parent 6b219a279b
commit 59815bb0f5

View File

@ -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(),