Skip to content

Commit 3ab0613

Browse files
authored
fix(circuits): Add ProviderAccount fieldsets (#21708)
1 parent c3c7cf1 commit 3ab0613

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

netbox/circuits/forms/model_forms.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,14 @@ class ProviderAccountForm(PrimaryModelForm):
6868
quick_add=True
6969
)
7070

71+
fieldsets = (
72+
FieldSet('provider', 'account', 'name', 'description', 'tags'),
73+
)
74+
7175
class Meta:
7276
model = ProviderAccount
7377
fields = [
74-
'provider', 'name', 'account', 'description', 'owner', 'comments', 'tags',
78+
'provider', 'account', 'name', 'description', 'owner', 'comments', 'tags',
7579
]
7680

7781

0 commit comments

Comments
 (0)