From a888dea0b9248ea2bcb9bad64ed56c19a074d68e Mon Sep 17 00:00:00 2001 From: Arthur Date: Fri, 20 Oct 2023 16:38:42 -0700 Subject: [PATCH] 13230 extraneous model field --- netbox/dcim/forms/bulk_edit.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/netbox/dcim/forms/bulk_edit.py b/netbox/dcim/forms/bulk_edit.py index 671742f8e..a08913b17 100644 --- a/netbox/dcim/forms/bulk_edit.py +++ b/netbox/dcim/forms/bulk_edit.py @@ -291,11 +291,6 @@ class RackBulkEditForm(NetBoxModelBulkEditForm): required=False, label=_('Height (U)') ) - exclude_from_utilization = forms.NullBooleanField( - required=False, - widget=BulkEditNullBooleanSelect, - label=_('Descending units') - ) desc_units = forms.NullBooleanField( required=False, widget=BulkEditNullBooleanSelect, @@ -349,8 +344,7 @@ class RackBulkEditForm(NetBoxModelBulkEditForm): (_('Rack'), ('status', 'role', 'tenant', 'serial', 'asset_tag', 'description')), (_('Location'), ('region', 'site_group', 'site', 'location')), (_('Hardware'), ( - 'type', 'width', 'u_height', 'exclude_from_utilization', 'desc_units', 'outer_width', 'outer_depth', - 'outer_unit', 'mounting_depth', + 'type', 'width', 'u_height', 'desc_units', 'outer_width', 'outer_depth', 'outer_unit', 'mounting_depth', )), (_('Weight'), ('weight', 'max_weight', 'weight_unit')), )