mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
68 lines
1.9 KiB
Python
68 lines
1.9 KiB
Python
import django_tables2 as tables
|
|
from django_tables2.utils import Accessor
|
|
|
|
from circuits.models import *
|
|
from netbox.tables import NetBoxTable, columns
|
|
|
|
__all__ = (
|
|
'ProviderTable',
|
|
'ProviderNetworkTable',
|
|
)
|
|
|
|
|
|
class ProviderTable(NetBoxTable):
|
|
name = tables.Column(
|
|
linkify=True
|
|
)
|
|
asns = tables.ManyToManyColumn(
|
|
linkify_item=True,
|
|
verbose_name='ASNs'
|
|
)
|
|
asn_count = columns.LinkedCountColumn(
|
|
accessor=tables.A('asns__count'),
|
|
viewname='ipam:asn_list',
|
|
url_params={'provider_id': 'pk'},
|
|
verbose_name='ASN Count'
|
|
)
|
|
circuit_count = columns.LinkedCountColumn(
|
|
accessor=Accessor('count_circuits'),
|
|
viewname='circuits:circuit_list',
|
|
url_params={'provider_id': 'pk'},
|
|
verbose_name='Circuits'
|
|
)
|
|
comments = columns.MarkdownColumn()
|
|
contacts = tables.ManyToManyColumn(
|
|
linkify_item=True
|
|
)
|
|
tags = columns.TagColumn(
|
|
url_name='circuits:provider_list'
|
|
)
|
|
|
|
class Meta(NetBoxTable.Meta):
|
|
model = Provider
|
|
fields = (
|
|
'pk', 'id', 'name', 'asn', 'asns', 'account', 'portal_url', 'noc_contact', 'admin_contact', 'asn_count',
|
|
'circuit_count', 'comments', 'contacts', 'tags', 'created', 'last_updated',
|
|
)
|
|
default_columns = ('pk', 'name', 'asn', 'account', 'circuit_count')
|
|
|
|
|
|
class ProviderNetworkTable(NetBoxTable):
|
|
name = tables.Column(
|
|
linkify=True
|
|
)
|
|
provider = tables.Column(
|
|
linkify=True
|
|
)
|
|
comments = columns.MarkdownColumn()
|
|
tags = columns.TagColumn(
|
|
url_name='circuits:providernetwork_list'
|
|
)
|
|
|
|
class Meta(NetBoxTable.Meta):
|
|
model = ProviderNetwork
|
|
fields = (
|
|
'pk', 'id', 'name', 'provider', 'service_id', 'description', 'comments', 'created', 'last_updated', 'tags',
|
|
)
|
|
default_columns = ('pk', 'name', 'provider', 'service_id', 'description')
|