From 59815bb0f55c2d0ae09a9ec66ad0ddd8e9cbd751 Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Mon, 23 Sep 2024 11:19:13 -0700 Subject: [PATCH] 17569 Add help text to VLAN Group that is not saved on the interface --- netbox/dcim/forms/model_forms.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/netbox/dcim/forms/model_forms.py b/netbox/dcim/forms/model_forms.py index 6e0a47979..60431784c 100644 --- a/netbox/dcim/forms/model_forms.py +++ b/netbox/dcim/forms/model_forms.py @@ -1351,7 +1351,8 @@ class InterfaceForm(InterfaceCommonForm, ModularDeviceComponentForm): vlan_group = DynamicModelChoiceField( queryset=VLANGroup.objects.all(), 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( queryset=VLAN.objects.all(),