mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-10 09:38:15 -06:00
Rename provider column
This commit is contained in:
parent
37d4ca38f2
commit
547f7c3dab
@ -96,8 +96,8 @@ class CircuitTerminationTable(NetBoxTable):
|
||||
verbose_name=_('Circuit'),
|
||||
linkify=True
|
||||
)
|
||||
circuit_provider = tables.Column(
|
||||
verbose_name=_('Circuit Provider'),
|
||||
provider = tables.Column(
|
||||
verbose_name=_('Provider'),
|
||||
linkify=True,
|
||||
accessor='circuit.provider'
|
||||
)
|
||||
@ -113,7 +113,7 @@ class CircuitTerminationTable(NetBoxTable):
|
||||
class Meta(NetBoxTable.Meta):
|
||||
model = CircuitTermination
|
||||
fields = (
|
||||
'pk', 'id', 'circuit', 'circuit_provider', 'term_side', 'site', 'provider_network', 'port_speed', 'upstream_speed',
|
||||
'pk', 'id', 'circuit', 'provider', 'term_side', 'site', 'provider_network', 'port_speed', 'upstream_speed',
|
||||
'xconnect_id', 'pp_info', 'description', 'created', 'last_updated', 'actions',
|
||||
)
|
||||
default_columns = ('pk', 'id', 'circuit', 'circuit_provider', 'term_side', 'description')
|
||||
default_columns = ('pk', 'id', 'circuit', 'provider', 'term_side', 'description')
|
||||
|
Loading…
Reference in New Issue
Block a user