17476 fix

This commit is contained in:
Arthur Hanson 2024-10-08 09:17:08 -07:00
parent 90da31e335
commit b4bc7af810
2 changed files with 2 additions and 2 deletions

View File

@ -585,7 +585,7 @@ class VLANGroupForm(NetBoxModelForm):
fieldsets = ( fieldsets = (
FieldSet('name', 'slug', 'description', 'tags', name=_('VLAN Group')), FieldSet('name', 'slug', 'description', 'tags', name=_('VLAN Group')),
FieldSet('vid_ranges', name=_('Child VLANs')), FieldSet('vid_ranges', name=_('Child VLANs')),
FieldSet('scope_type', name=_('Scope')), FieldSet('scope_type', 'scope', name=_('Scope')),
) )
class Meta: class Meta:

View File

@ -252,7 +252,7 @@ class TunnelTerminationForm(NetBoxModelForm):
) )
fieldsets = ( fieldsets = (
FieldSet('tunnel', 'role', 'type', 'parent', 'termination_key' 'outside_ip', 'tags'), FieldSet('tunnel', 'role', 'type', 'parent', 'termination' 'outside_ip', 'tags'),
) )
class Meta: class Meta: