fix(circuits): Add ProviderAccount fieldsets

Swap 'account' and 'name' field order in ProviderAccountForm Meta.fields
to match the newly added fieldsets definition. Ensures consistent field
ordering between the fieldsets declaration and Meta configuration.

Fixes #21707
This commit is contained in:
Martin Hauser
2026-03-18 18:39:55 +01:00
parent c3c7cf15b2
commit 069985c3ef
+5 -1
View File
@@ -68,10 +68,14 @@ class ProviderAccountForm(PrimaryModelForm):
quick_add=True
)
fieldsets = (
FieldSet('provider', 'account', 'name', 'description', 'tags'),
)
class Meta:
model = ProviderAccount
fields = [
'provider', 'name', 'account', 'description', 'owner', 'comments', 'tags',
'provider', 'account', 'name', 'description', 'owner', 'comments', 'tags',
]