1
0
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:
Jeremy Stretch
2021-02-25 13:51:48 -05:00
parent 2a517cde9f
commit 42e82f0ead
27 changed files with 75 additions and 659 deletions

View File

@ -116,6 +116,9 @@ class TagForm(BootstrapMixin, forms.ModelForm):
fields = [
'name', 'slug', 'color', 'description'
]
fieldsets = (
('Tag', ('name', 'slug', 'color', 'description')),
)
class TagCSVForm(CSVModelForm):