mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-31 04:46:26 -06:00
9604 review changes
This commit is contained in:
parent
3c4d8bb4a1
commit
5b7fda6075
@ -23,7 +23,7 @@ If selected, the circuit termination will be considered "connected" even if no c
|
|||||||
|
|
||||||
### Scope
|
### Scope
|
||||||
|
|
||||||
The [region](../dcim/region.md), [site](../dcim/site.md) or [location](../dcim/location.md) with which this circuit termination is associated. Once created, a cable can be connected between the circuit termination and a device interface (or similar component).
|
The [region](../dcim/region.md), [site group](../dcim/sitegroup.md), [site](../dcim/site.md) or [location](../dcim/location.md) with which this circuit termination is associated. Once created, a cable can be connected between the circuit termination and a device interface (or similar component).
|
||||||
|
|
||||||
### Provider Network
|
### Provider Network
|
||||||
|
|
||||||
|
@ -115,16 +115,33 @@ class CircuitTerminationTable(NetBoxTable):
|
|||||||
linkify=True,
|
linkify=True,
|
||||||
accessor='_site'
|
accessor='_site'
|
||||||
)
|
)
|
||||||
|
site_group = tables.Column(
|
||||||
|
verbose_name=_('Site Group'),
|
||||||
|
linkify=True,
|
||||||
|
accessor='_sitegroup'
|
||||||
|
)
|
||||||
|
region = tables.Column(
|
||||||
|
verbose_name=_('Region'),
|
||||||
|
linkify=True,
|
||||||
|
accessor='_region'
|
||||||
|
)
|
||||||
|
location = tables.Column(
|
||||||
|
verbose_name=_('Location'),
|
||||||
|
linkify=True,
|
||||||
|
accessor='_location'
|
||||||
|
)
|
||||||
provider_network = tables.Column(
|
provider_network = tables.Column(
|
||||||
verbose_name=_('Provider Network'),
|
verbose_name=_('Provider Network'),
|
||||||
linkify=True
|
linkify=True,
|
||||||
|
accessor='_provider_network'
|
||||||
)
|
)
|
||||||
|
|
||||||
class Meta(NetBoxTable.Meta):
|
class Meta(NetBoxTable.Meta):
|
||||||
model = CircuitTermination
|
model = CircuitTermination
|
||||||
fields = (
|
fields = (
|
||||||
'pk', 'id', 'circuit', 'provider', 'term_side', 'site', 'provider_network', 'port_speed', 'upstream_speed',
|
'pk', 'id', 'circuit', 'provider', 'term_side', '_site', 'site_group', 'region', 'location',
|
||||||
'xconnect_id', 'pp_info', 'description', 'created', 'last_updated', 'actions',
|
'provider_network', 'port_speed', 'upstream_speed', 'xconnect_id', 'pp_info', 'description',
|
||||||
|
'created', 'last_updated', 'actions',
|
||||||
)
|
)
|
||||||
default_columns = ('pk', 'id', 'circuit', 'provider', 'term_side', 'description')
|
default_columns = ('pk', 'id', 'circuit', 'provider', 'term_side', 'description')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user