1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Merge tags fields with primary object fields in form display

This commit is contained in:
Jeremy Stretch
2021-02-25 14:03:14 -05:00
parent 42e82f0ead
commit cef8204f40
14 changed files with 28 additions and 71 deletions

View File

@ -65,7 +65,7 @@ class TenantForm(BootstrapMixin, CustomFieldModelForm):
'name', 'slug', 'group', 'description', 'comments', 'tags',
)
fieldsets = (
('Tenant', ('name', 'slug', 'group', 'description')),
('Tenant', ('name', 'slug', 'group', 'description', 'tags')),
)