mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-16 04:02:52 -06:00
Add tags to VLANTranslationRuleForm
This commit is contained in:
parent
eece55b212
commit
0d5961bf6e
@ -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',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user