mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
cef0d168a5
* netbox-community/netbox#6930: Add ID column to devices, device types, and components * netbox-community/netbox#6930: Add ID column to sites, racks, and tenants * netbox-community/netbox#6930: Add ID column to power, providers, TODO circuits * netbox-community/netbox#6930: Add ID column to virtualization tables * netbox-community/netbox#6930: Add ID column to IPAM tables * netbox-community/netbox#6930: Add ID column to 'extras' tables * netbox-community/netbox#6930: Move ID column to BaseTable class * netbox-community/netbox#6930: Don't linkify ID in device component template tables * netbox-community/netbox#6930: Don't show ID column in interface/console/power connections tables * netbox-community/netbox#6930: Don't show ID column in device component template tables * netbox-community/netbox#6930: Add ID column to ObjectJournal, DeviceImport, and Circuit tables * Exclude ID column from selected tables * netbox-community/netbox#6930:revert default columns on ObjectChangeTable, not configurable * netbox-community/netbox#6930: Add object ID to tagged objects table in tag detail view Co-authored-by: Jeremy Stretch <jstretch@ns1.com>
73 lines
1.6 KiB
Python
73 lines
1.6 KiB
Python
import django_tables2 as tables
|
|
|
|
from tenancy.tables import TenantColumn
|
|
from utilities.tables import BaseTable, BooleanColumn, TagColumn, TemplateColumn, ToggleColumn
|
|
from ipam.models import *
|
|
|
|
__all__ = (
|
|
'RouteTargetTable',
|
|
'VRFTable',
|
|
)
|
|
|
|
VRF_TARGETS = """
|
|
{% for rt in value.all %}
|
|
<a href="{{ rt.get_absolute_url }}">{{ rt }}</a>{% if not forloop.last %}<br />{% endif %}
|
|
{% endfor %}
|
|
"""
|
|
|
|
|
|
#
|
|
# VRFs
|
|
#
|
|
|
|
class VRFTable(BaseTable):
|
|
pk = ToggleColumn()
|
|
name = tables.Column(
|
|
linkify=True
|
|
)
|
|
rd = tables.Column(
|
|
verbose_name='RD'
|
|
)
|
|
tenant = TenantColumn()
|
|
enforce_unique = BooleanColumn(
|
|
verbose_name='Unique'
|
|
)
|
|
import_targets = TemplateColumn(
|
|
template_code=VRF_TARGETS,
|
|
orderable=False
|
|
)
|
|
export_targets = TemplateColumn(
|
|
template_code=VRF_TARGETS,
|
|
orderable=False
|
|
)
|
|
tags = TagColumn(
|
|
url_name='ipam:vrf_list'
|
|
)
|
|
|
|
class Meta(BaseTable.Meta):
|
|
model = VRF
|
|
fields = (
|
|
'pk', 'id', 'name', 'rd', 'tenant', 'enforce_unique', 'description', 'import_targets', 'export_targets', 'tags',
|
|
)
|
|
default_columns = ('pk', 'name', 'rd', 'tenant', 'description')
|
|
|
|
|
|
#
|
|
# Route targets
|
|
#
|
|
|
|
class RouteTargetTable(BaseTable):
|
|
pk = ToggleColumn()
|
|
name = tables.Column(
|
|
linkify=True
|
|
)
|
|
tenant = TenantColumn()
|
|
tags = TagColumn(
|
|
url_name='ipam:vrf_list'
|
|
)
|
|
|
|
class Meta(BaseTable.Meta):
|
|
model = RouteTarget
|
|
fields = ('pk', 'id', 'name', 'tenant', 'description', 'tags')
|
|
default_columns = ('pk', 'name', 'tenant', 'description')
|