From 0d5961bf6e4f26f136689db5687a9f39f3c31f80 Mon Sep 17 00:00:00 2001 From: Brian Tiemann Date: Mon, 21 Oct 2024 22:01:21 -0400 Subject: [PATCH] Add tags to VLANTranslationRuleForm --- netbox/ipam/forms/model_forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netbox/ipam/forms/model_forms.py b/netbox/ipam/forms/model_forms.py index 32ccfe848..08cac3f29 100644 --- a/netbox/ipam/forms/model_forms.py +++ b/netbox/ipam/forms/model_forms.py @@ -714,13 +714,13 @@ class VLANTranslationRuleForm(NetBoxModelForm): ) fieldsets = ( - FieldSet('policy', 'local_vid', 'remote_vid', name=_('VLAN Translation Rule')), + FieldSet('policy', 'local_vid', 'remote_vid', 'tags', name=_('VLAN Translation Rule')), ) class Meta: model = VLANTranslationRule fields = [ - 'policy', 'local_vid', 'remote_vid', + 'policy', 'local_vid', 'remote_vid', 'tags', ]