From 3ab061370874f032fac344f4da1d7d8d5d786256 Mon Sep 17 00:00:00 2001 From: Martin Hauser Date: Tue, 24 Mar 2026 00:07:20 +0100 Subject: [PATCH] fix(circuits): Add ProviderAccount fieldsets (#21708) --- netbox/circuits/forms/model_forms.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/netbox/circuits/forms/model_forms.py b/netbox/circuits/forms/model_forms.py index 63f6a4364..5a48455d8 100644 --- a/netbox/circuits/forms/model_forms.py +++ b/netbox/circuits/forms/model_forms.py @@ -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', ]