mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Update object edit template to use fieldsets where possible
This commit is contained in:
@ -116,6 +116,9 @@ class TagForm(BootstrapMixin, forms.ModelForm):
|
||||
fields = [
|
||||
'name', 'slug', 'color', 'description'
|
||||
]
|
||||
fieldsets = (
|
||||
('Tag', ('name', 'slug', 'color', 'description')),
|
||||
)
|
||||
|
||||
|
||||
class TagCSVForm(CSVModelForm):
|
||||
|
Reference in New Issue
Block a user