mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
63 lines
1.5 KiB
Python
63 lines
1.5 KiB
Python
import django_tables2 as tables
|
|
|
|
from dcim.models import Region, Site
|
|
from tenancy.tables import COL_TENANT
|
|
from utilities.tables import BaseTable, ButtonsColumn, ChoiceFieldColumn, TagColumn, ToggleColumn
|
|
from .template_code import MPTT_LINK
|
|
|
|
__all__ = (
|
|
'RegionTable',
|
|
'SiteTable',
|
|
)
|
|
|
|
|
|
#
|
|
# Regions
|
|
#
|
|
|
|
class RegionTable(BaseTable):
|
|
pk = ToggleColumn()
|
|
name = tables.TemplateColumn(
|
|
template_code=MPTT_LINK,
|
|
orderable=False
|
|
)
|
|
site_count = tables.Column(
|
|
verbose_name='Sites'
|
|
)
|
|
actions = ButtonsColumn(Region)
|
|
|
|
class Meta(BaseTable.Meta):
|
|
model = Region
|
|
fields = ('pk', 'name', 'slug', 'site_count', 'description', 'actions')
|
|
default_columns = ('pk', 'name', 'site_count', 'description', 'actions')
|
|
|
|
|
|
#
|
|
# Sites
|
|
#
|
|
|
|
class SiteTable(BaseTable):
|
|
pk = ToggleColumn()
|
|
name = tables.LinkColumn(
|
|
order_by=('_name',)
|
|
)
|
|
status = ChoiceFieldColumn()
|
|
region = tables.Column(
|
|
linkify=True
|
|
)
|
|
tenant = tables.TemplateColumn(
|
|
template_code=COL_TENANT
|
|
)
|
|
tags = TagColumn(
|
|
url_name='dcim:site_list'
|
|
)
|
|
|
|
class Meta(BaseTable.Meta):
|
|
model = Site
|
|
fields = (
|
|
'pk', 'name', 'slug', 'status', 'facility', 'region', 'tenant', 'asn', 'time_zone', 'description',
|
|
'physical_address', 'shipping_address', 'latitude', 'longitude', 'contact_name', 'contact_phone',
|
|
'contact_email', 'tags',
|
|
)
|
|
default_columns = ('pk', 'name', 'status', 'facility', 'region', 'tenant', 'asn', 'description')
|