From b206362362983b0623495f9d42e26b2a360bb936 Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Fri, 25 Oct 2024 15:11:28 -0700 Subject: [PATCH] 9604 fix forms --- netbox/circuits/forms/bulk_edit.py | 2 +- netbox/circuits/forms/model_forms.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/netbox/circuits/forms/bulk_edit.py b/netbox/circuits/forms/bulk_edit.py index be1cd9790..46e4570bb 100644 --- a/netbox/circuits/forms/bulk_edit.py +++ b/netbox/circuits/forms/bulk_edit.py @@ -230,7 +230,7 @@ class CircuitTerminationBulkEditForm(NetBoxModelBulkEditForm): fieldsets = ( FieldSet( 'description', - FieldSet('scope_type', 'scope', name=_('Scope')), + 'scope_type', 'scope', 'mark_connected', name=_('Circuit Termination') ), FieldSet('port_speed', 'upstream_speed', name=_('Termination Details')), diff --git a/netbox/circuits/forms/model_forms.py b/netbox/circuits/forms/model_forms.py index 1240cae26..7b3e38be5 100644 --- a/netbox/circuits/forms/model_forms.py +++ b/netbox/circuits/forms/model_forms.py @@ -166,7 +166,7 @@ class CircuitTerminationForm(NetBoxModelForm): fieldsets = ( FieldSet( 'circuit', 'term_side', 'description', 'tags', - FieldSet('scope_type', 'scope', name=_('Scope')), + 'scope_type', 'scope', 'mark_connected', name=_('Circuit Termination') ), FieldSet('port_speed', 'upstream_speed', 'xconnect_id', 'pp_info', name=_('Termination Details')),