Add tags to VLANTranslationRuleForm

This commit is contained in:
Brian Tiemann 2024-10-21 22:01:21 -04:00
parent eece55b212
commit 0d5961bf6e

View File

@ -714,13 +714,13 @@ class VLANTranslationRuleForm(NetBoxModelForm):
) )
fieldsets = ( fieldsets = (
FieldSet('policy', 'local_vid', 'remote_vid', name=_('VLAN Translation Rule')), FieldSet('policy', 'local_vid', 'remote_vid', 'tags', name=_('VLAN Translation Rule')),
) )
class Meta: class Meta:
model = VLANTranslationRule model = VLANTranslationRule
fields = [ fields = [
'policy', 'local_vid', 'remote_vid', 'policy', 'local_vid', 'remote_vid', 'tags',
] ]