mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
* Standardize description & comments fields on primary models * Update REST API serializers * Update forms * Update tables * Update templates
66 lines
1.9 KiB
Python
66 lines
1.9 KiB
Python
import django_tables2 as tables
|
|
from circuits.models import *
|
|
from django_tables2.utils import Accessor
|
|
from tenancy.tables import ContactsColumnMixin
|
|
|
|
from netbox.tables import NetBoxTable, columns
|
|
|
|
__all__ = (
|
|
'ProviderTable',
|
|
'ProviderNetworkTable',
|
|
)
|
|
|
|
|
|
class ProviderTable(ContactsColumnMixin, NetBoxTable):
|
|
name = tables.Column(
|
|
linkify=True
|
|
)
|
|
asns = columns.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()
|
|
tags = columns.TagColumn(
|
|
url_name='circuits:provider_list'
|
|
)
|
|
|
|
class Meta(NetBoxTable.Meta):
|
|
model = Provider
|
|
fields = (
|
|
'pk', 'id', 'name', 'asns', 'account', 'asn_count', 'circuit_count', 'description', 'comments', 'contacts',
|
|
'tags', 'created', 'last_updated',
|
|
)
|
|
default_columns = ('pk', 'name', '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')
|