Compare commits

...

3 Commits

Author SHA1 Message Date
Jeremy Stretch
2bf187c061 Cleanup
CI / build (20.x, 3.14) (push) Failing after 13s
CI / build (20.x, 3.13) (push) Failing after 15s
CI / build (20.x, 3.12) (push) Failing after 17s
2026-03-18 16:24:44 -04:00
Martin Hauser
069985c3ef 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
2026-03-18 18:39:55 +01:00
Jeremy Stretch
7163840279 #20923: Migrate remaining DCIM views to new UI layouts 2026-03-18 12:31:54 -04:00
+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',
]