diff --git a/netbox/ipam/forms/model_forms.py b/netbox/ipam/forms/model_forms.py index 69321a669..156e7c435 100644 --- a/netbox/ipam/forms/model_forms.py +++ b/netbox/ipam/forms/model_forms.py @@ -585,7 +585,7 @@ class VLANGroupForm(NetBoxModelForm): fieldsets = ( FieldSet('name', 'slug', 'description', 'tags', name=_('VLAN Group')), FieldSet('vid_ranges', name=_('Child VLANs')), - FieldSet('scope_type', name=_('Scope')), + FieldSet('scope_type', 'scope', name=_('Scope')), ) class Meta: diff --git a/netbox/vpn/forms/model_forms.py b/netbox/vpn/forms/model_forms.py index 6fee5b01d..c6e32b596 100644 --- a/netbox/vpn/forms/model_forms.py +++ b/netbox/vpn/forms/model_forms.py @@ -252,7 +252,7 @@ class TunnelTerminationForm(NetBoxModelForm): ) fieldsets = ( - FieldSet('tunnel', 'role', 'type', 'parent', 'termination_key' 'outside_ip', 'tags'), + FieldSet('tunnel', 'role', 'type', 'parent', 'termination' 'outside_ip', 'tags'), ) class Meta: