Fix typo: "locigal connection" (#305)
This commit is contained in:
@@ -113,7 +113,7 @@ Select your options for the topology view:
|
|||||||
<dd>Show logical connections between interfaces (referred to as Interface Connections in NetBox) in the topology view. Where the path between
|
<dd>Show logical connections between interfaces (referred to as Interface Connections in NetBox) in the topology view. Where the path between
|
||||||
interfaces includes multiple cables (e.g., via patch panels), only the end interface connections are shown, not the
|
interfaces includes multiple cables (e.g., via patch panels), only the end interface connections are shown, not the
|
||||||
intermediate front / rear port connections, etc. This is similar to what was referred to as 'end-to-end' connections in previous versions. These connections are displayed as yellow dotted lines.</dd>
|
intermediate front / rear port connections, etc. This is similar to what was referred to as 'end-to-end' connections in previous versions. These connections are displayed as yellow dotted lines.</dd>
|
||||||
<dt>Show redundant Cable and Locigal Connection</dt>
|
<dt>Show redundant Cable and Logical Connection</dt>
|
||||||
<dd>Shows a logical connection (in addition to a cable), even if a cable is directly connected. Leaving this option disabled prevents that redundant display. This option only has an effect if 'Show Logical Connections' is activated.</dd>
|
<dd>Shows a logical connection (in addition to a cable), even if a cable is directly connected. Leaving this option disabled prevents that redundant display. This option only has an effect if 'Show Logical Connections' is activated.</dd>
|
||||||
<dt>Show Neighbors</dt>
|
<dt>Show Neighbors</dt>
|
||||||
<dd>Adds neighbors to the filter result set automatically. Link peers will be added if 'Show Cables' is ticked, far-end terminations will be added if 'Show Logical Connections' is ticked.</dd>
|
<dd>Adds neighbors to the filter result set automatically. Link peers will be added if 'Show Cables' is ticked, far-end terminations will be added if 'Show Logical Connections' is ticked.</dd>
|
||||||
|
|||||||
@@ -126,7 +126,7 @@ class DeviceFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
|
|||||||
label =_("Show Logical Connections"), required=False, initial=False
|
label =_("Show Logical Connections"), required=False, initial=False
|
||||||
)
|
)
|
||||||
show_single_cable_logical_conns = forms.BooleanField(
|
show_single_cable_logical_conns = forms.BooleanField(
|
||||||
label =_("Show redundant Cable and Locigal Connection"), required=False, initial=False
|
label =_("Show redundant Cable and Logical Connection"), required=False, initial=False
|
||||||
)
|
)
|
||||||
show_neighbors = forms.BooleanField(
|
show_neighbors = forms.BooleanField(
|
||||||
label =_("Show Neighbors"), required=False, initial=False
|
label =_("Show Neighbors"), required=False, initial=False
|
||||||
@@ -212,7 +212,7 @@ class IndividualOptionsForm(NetBoxModelForm):
|
|||||||
"are displayed as yellow dotted lines.")
|
"are displayed as yellow dotted lines.")
|
||||||
)
|
)
|
||||||
show_single_cable_logical_conns = forms.BooleanField(
|
show_single_cable_logical_conns = forms.BooleanField(
|
||||||
label = ("Show redundant Cable and Locigal Connection"),
|
label = ("Show redundant Cable and Logical Connection"),
|
||||||
required = False,
|
required = False,
|
||||||
initial=False,
|
initial=False,
|
||||||
help_text=_("Shows a logical connection (in addition to a cable), "
|
help_text=_("Shows a logical connection (in addition to a cable), "
|
||||||
@@ -263,4 +263,4 @@ class IndividualOptionsForm(NetBoxModelForm):
|
|||||||
fields = [
|
fields = [
|
||||||
'user_id', 'ignore_cable_type', 'preselected_device_roles', 'preselected_tags', 'show_unconnected', 'show_cables', 'show_logical_connections', 'show_single_cable_logical_conns', 'show_neighbors', 'show_circuit', 'show_power', 'show_wireless', 'draw_default_layout'
|
'user_id', 'ignore_cable_type', 'preselected_device_roles', 'preselected_tags', 'show_unconnected', 'show_cables', 'show_logical_connections', 'show_single_cable_logical_conns', 'show_neighbors', 'show_circuit', 'show_power', 'show_wireless', 'draw_default_layout'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user