Revert last Show Wireless change (#703)

This commit is contained in:
Mario
2026-01-27 19:24:19 +01:00
committed by GitHub
parent 89c56c8d1c
commit e20f250425
+20 -23
View File
@@ -35,12 +35,12 @@ class DeviceFilterForm(
fieldsets = ( fieldsets = (
FieldSet('q', 'filter_id', 'tag'), FieldSet('q', 'filter_id', 'tag'),
FieldSet( FieldSet(
'group', 'ignore_cable_type', 'save_coords', 'show_unconnected', 'show_cables', 'show_logical_connections', 'group', 'ignore_cable_type', 'save_coords', 'show_unconnected', 'show_cables', 'show_wireless',
'show_single_cable_logical_conns', 'show_neighbors', 'show_logical_connections', 'show_single_cable_logical_conns', 'show_neighbors',
'group_sites', 'group_locations', 'group_racks', 'group_virtualchassis', 'straight_cables', 'grid_size', 'node_label_items', name=_("Options") 'group_sites', 'group_locations', 'group_racks', 'group_virtualchassis', 'straight_cables', 'grid_size', 'node_label_items', name=_("Options")
), ),
FieldSet( FieldSet(
'show_circuit', 'show_power', 'show_wireless', name=_("Additional filter-independent types (non-devices)") 'show_circuit', 'show_power', name=_("Additional filter-independent types (non-devices)")
), ),
FieldSet('id', name=_("Device")), FieldSet('id', name=_("Device")),
FieldSet('region_id', 'site_group_id', 'site_id', 'location_id', 'rack_id', name=_("Location")), FieldSet('region_id', 'site_group_id', 'site_id', 'location_id', 'rack_id', name=_("Location")),
@@ -264,7 +264,12 @@ class DeviceFilterForm(
choices=BOOLEAN_WITH_BLANK_CHOICES choices=BOOLEAN_WITH_BLANK_CHOICES
) )
) )
show_wireless = forms.NullBooleanField(
label =_('Show Wireless Links'), required=False, initial=False,
widget=forms.Select(
choices=BOOLEAN_WITH_BLANK_CHOICES
)
)
show_logical_connections = forms.NullBooleanField( show_logical_connections = forms.NullBooleanField(
label =_('Show Logical Connections'), required=False, initial=False, label =_('Show Logical Connections'), required=False, initial=False,
widget=forms.Select( widget=forms.Select(
@@ -342,13 +347,6 @@ class DeviceFilterForm(
choices=BOOLEAN_WITH_BLANK_CHOICES choices=BOOLEAN_WITH_BLANK_CHOICES
) )
) )
show_wireless = forms.NullBooleanField(
label =_('Show Wireless Links'), required=False, initial=False,
help_text=_('All Wireless Links will be displayed. Wireless Links cannot be filtered.'),
widget=forms.Select(
choices=BOOLEAN_WITH_BLANK_CHOICES
)
)
class CoordinateGroupsForm(NetBoxModelForm): class CoordinateGroupsForm(NetBoxModelForm):
fieldsets = ( fieldsets = (
@@ -530,6 +528,7 @@ class IndividualOptionsForm(NetBoxModelForm):
'save_coords', 'save_coords',
'show_unconnected', 'show_unconnected',
'show_cables', 'show_cables',
'show_wireless',
'show_logical_connections', 'show_logical_connections',
'show_single_cable_logical_conns', 'show_single_cable_logical_conns',
'show_neighbors', 'show_neighbors',
@@ -546,7 +545,6 @@ class IndividualOptionsForm(NetBoxModelForm):
( (
'show_circuit', 'show_circuit',
'show_power', 'show_power',
'show_wireless',
name=_("Additional filter-independent types (non-devices)") name=_("Additional filter-independent types (non-devices)")
), ),
) )
@@ -600,6 +598,13 @@ class IndividualOptionsForm(NetBoxModelForm):
'with one or more cables. These connections are displayed as solid ' 'with one or more cables. These connections are displayed as solid '
'lines in the color of the cable.') 'lines in the color of the cable.')
) )
show_wireless = forms.BooleanField(
label =_('Show Wireless Links'),
required=False,
initial=False,
help_text=_('Displays wireless connections. These connections are '
'displayed as blue dotted lines.')
)
show_logical_connections = forms.BooleanField( show_logical_connections = forms.BooleanField(
label =_('Show Logical Connections'), label =_('Show Logical Connections'),
required=False, required=False,
@@ -700,22 +705,14 @@ class IndividualOptionsForm(NetBoxModelForm):
'color of the cable. This option depends on \'Show Cables\'. ' 'color of the cable. This option depends on \'Show Cables\'. '
'Be aware that Power Feeds cannot be filtered.') 'Be aware that Power Feeds cannot be filtered.')
) )
show_wireless = forms.BooleanField(
label =_('Show Wireless Links'),
required=False,
initial=False,
help_text=_('Displays wireless connections. These connections are '
'displayed as blue dotted lines. '
'Be aware that Wireless Links cannot be filtered.')
)
class Meta: class Meta:
model = IndividualOptions model = IndividualOptions
fields = [ fields = [
'user_id', 'ignore_cable_type', 'preselected_device_roles', 'preselected_tags', 'user_id', 'ignore_cable_type', 'preselected_device_roles', 'preselected_tags',
'save_coords', 'show_unconnected', 'show_cables', 'show_logical_connections', 'save_coords', 'show_unconnected', 'show_cables', 'show_wireless',
'show_single_cable_logical_conns', 'show_neighbors', 'show_logical_connections', 'show_single_cable_logical_conns', 'show_neighbors',
'group_sites', 'group_locations', 'group_racks', 'group_virtualchassis', 'group_sites', 'group_locations', 'group_racks', 'group_virtualchassis',
'draw_default_layout', 'straight_cables', 'grid_size', 'node_label_items', 'draw_default_layout', 'straight_cables', 'grid_size', 'node_label_items',
'show_circuit', 'show_power', 'show_wireless' 'show_circuit', 'show_power'
] ]