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', ]