| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754 |
- import django_tables2 as tables
- from django_tables2.utils import Accessor
- from django.conf import settings
- from dcim.models import (
- ConsolePort, ConsoleServerPort, Device, DeviceBay, DeviceRole, FrontPort, Interface, InventoryItem, Platform,
- PowerOutlet, PowerPort, RearPort, VirtualChassis,
- )
- from tenancy.tables import TenantColumn
- from utilities.tables import (
- BaseTable, BooleanColumn, ButtonsColumn, ChoiceFieldColumn, ColorColumn, ColoredLabelColumn, LinkedCountColumn,
- TagColumn, ToggleColumn,
- )
- from .template_code import (
- CABLETERMINATION, CONSOLEPORT_BUTTONS, CONSOLESERVERPORT_BUTTONS, DEVICE_LINK, DEVICEBAY_BUTTONS, DEVICEBAY_STATUS,
- FRONTPORT_BUTTONS, INTERFACE_BUTTONS, INTERFACE_IPADDRESSES, INTERFACE_TAGGED_VLANS, POWEROUTLET_BUTTONS,
- POWERPORT_BUTTONS, REARPORT_BUTTONS,
- )
- __all__ = (
- 'ConsolePortTable',
- 'ConsoleServerPortTable',
- 'DeviceBayTable',
- 'DeviceConsolePortTable',
- 'DeviceConsoleServerPortTable',
- 'DeviceDeviceBayTable',
- 'DeviceFrontPortTable',
- 'DeviceImportTable',
- 'DeviceInterfaceTable',
- 'DeviceInventoryItemTable',
- 'DevicePowerPortTable',
- 'DevicePowerOutletTable',
- 'DeviceRearPortTable',
- 'DeviceRoleTable',
- 'DeviceTable',
- 'FrontPortTable',
- 'InterfaceTable',
- 'InventoryItemTable',
- 'PlatformTable',
- 'PowerOutletTable',
- 'PowerPortTable',
- 'RearPortTable',
- 'VirtualChassisTable',
- )
- def get_cabletermination_row_class(record):
- if record.mark_connected:
- return 'success'
- elif record.cable:
- return record.cable.get_status_class()
- return ''
- #
- # Device roles
- #
- class DeviceRoleTable(BaseTable):
- pk = ToggleColumn()
- name = tables.Column(
- linkify=True
- )
- device_count = LinkedCountColumn(
- viewname='dcim:device_list',
- url_params={'role_id': 'pk'},
- verbose_name='Devices'
- )
- vm_count = LinkedCountColumn(
- viewname='virtualization:virtualmachine_list',
- url_params={'role_id': 'pk'},
- verbose_name='VMs'
- )
- color = ColorColumn()
- vm_role = BooleanColumn()
- actions = ButtonsColumn(DeviceRole)
- class Meta(BaseTable.Meta):
- model = DeviceRole
- fields = ('pk', 'name', 'device_count', 'vm_count', 'color', 'vm_role', 'description', 'slug', 'actions')
- default_columns = ('pk', 'name', 'device_count', 'vm_count', 'color', 'vm_role', 'description', 'actions')
- #
- # Platforms
- #
- class PlatformTable(BaseTable):
- pk = ToggleColumn()
- name = tables.Column(
- linkify=True
- )
- device_count = LinkedCountColumn(
- viewname='dcim:device_list',
- url_params={'platform_id': 'pk'},
- verbose_name='Devices'
- )
- vm_count = LinkedCountColumn(
- viewname='virtualization:virtualmachine_list',
- url_params={'platform_id': 'pk'},
- verbose_name='VMs'
- )
- actions = ButtonsColumn(Platform)
- class Meta(BaseTable.Meta):
- model = Platform
- fields = (
- 'pk', 'name', 'manufacturer', 'device_count', 'vm_count', 'slug', 'napalm_driver', 'napalm_args',
- 'description', 'actions',
- )
- default_columns = (
- 'pk', 'name', 'manufacturer', 'device_count', 'vm_count', 'napalm_driver', 'description', 'actions',
- )
- #
- # Devices
- #
- class DeviceTable(BaseTable):
- pk = ToggleColumn()
- name = tables.TemplateColumn(
- order_by=('_name',),
- template_code=DEVICE_LINK
- )
- status = ChoiceFieldColumn()
- tenant = TenantColumn()
- site = tables.Column(
- linkify=True
- )
- location = tables.Column(
- linkify=True
- )
- rack = tables.Column(
- linkify=True
- )
- device_role = ColoredLabelColumn(
- verbose_name='Role'
- )
- manufacturer = tables.Column(
- accessor=Accessor('device_type__manufacturer'),
- linkify=True
- )
- device_type = tables.Column(
- linkify=True,
- verbose_name='Type'
- )
- if settings.PREFER_IPV4:
- primary_ip = tables.Column(
- linkify=True,
- order_by=('primary_ip4', 'primary_ip6'),
- verbose_name='IP Address'
- )
- else:
- primary_ip = tables.Column(
- linkify=True,
- order_by=('primary_ip6', 'primary_ip4'),
- verbose_name='IP Address'
- )
- primary_ip4 = tables.Column(
- linkify=True,
- verbose_name='IPv4 Address'
- )
- primary_ip6 = tables.Column(
- linkify=True,
- verbose_name='IPv6 Address'
- )
- cluster = tables.Column(
- linkify=True
- )
- virtual_chassis = tables.Column(
- linkify=True
- )
- vc_position = tables.Column(
- verbose_name='VC Position'
- )
- vc_priority = tables.Column(
- verbose_name='VC Priority'
- )
- tags = TagColumn(
- url_name='dcim:device_list'
- )
- class Meta(BaseTable.Meta):
- model = Device
- fields = (
- 'pk', 'name', 'status', 'tenant', 'device_role', 'manufacturer', 'device_type', 'platform', 'serial',
- 'asset_tag', 'site', 'location', 'rack', 'position', 'face', 'primary_ip', 'primary_ip4', 'primary_ip6',
- 'cluster', 'virtual_chassis', 'vc_position', 'vc_priority', 'tags',
- )
- default_columns = (
- 'pk', 'name', 'status', 'tenant', 'site', 'location', 'rack', 'device_role', 'manufacturer', 'device_type',
- 'primary_ip',
- )
- class DeviceImportTable(BaseTable):
- name = tables.TemplateColumn(
- template_code=DEVICE_LINK
- )
- status = ChoiceFieldColumn()
- tenant = TenantColumn()
- site = tables.Column(
- linkify=True
- )
- rack = tables.Column(
- linkify=True
- )
- device_role = tables.Column(
- verbose_name='Role'
- )
- device_type = tables.Column(
- verbose_name='Type'
- )
- class Meta(BaseTable.Meta):
- model = Device
- fields = ('name', 'status', 'tenant', 'site', 'rack', 'position', 'device_role', 'device_type')
- empty_text = False
- #
- # Device components
- #
- class DeviceComponentTable(BaseTable):
- pk = ToggleColumn()
- device = tables.Column(
- linkify=True
- )
- name = tables.Column(
- linkify=True,
- order_by=('_name',)
- )
- cable = tables.Column(
- linkify=True
- )
- mark_connected = BooleanColumn()
- class Meta(BaseTable.Meta):
- order_by = ('device', 'name')
- class CableTerminationTable(BaseTable):
- cable = tables.Column(
- linkify=True
- )
- cable_color = ColorColumn(
- accessor='cable.color',
- orderable=False,
- verbose_name='Cable Color'
- )
- cable_peer = tables.TemplateColumn(
- accessor='_cable_peer',
- template_code=CABLETERMINATION,
- orderable=False,
- verbose_name='Cable Peer'
- )
- mark_connected = BooleanColumn()
- class PathEndpointTable(CableTerminationTable):
- connection = tables.TemplateColumn(
- accessor='_path.last_node',
- template_code=CABLETERMINATION,
- verbose_name='Connection',
- orderable=False
- )
- class ConsolePortTable(DeviceComponentTable, PathEndpointTable):
- device = tables.Column(
- linkify={
- 'viewname': 'dcim:device_consoleports',
- 'args': [Accessor('device_id')],
- }
- )
- tags = TagColumn(
- url_name='dcim:consoleport_list'
- )
- class Meta(DeviceComponentTable.Meta):
- model = ConsolePort
- fields = (
- 'pk', 'device', 'name', 'label', 'type', 'speed', 'description', 'mark_connected', 'cable', 'cable_color',
- 'cable_peer', 'connection', 'tags',
- )
- default_columns = ('pk', 'device', 'name', 'label', 'type', 'speed', 'description')
- class DeviceConsolePortTable(ConsolePortTable):
- name = tables.TemplateColumn(
- template_code='<i class="mdi mdi-console"></i> <a href="{{ record.get_absolute_url }}">{{ value }}</a>',
- order_by=Accessor('_name'),
- attrs={'td': {'class': 'text-nowrap'}}
- )
- actions = ButtonsColumn(
- model=ConsolePort,
- buttons=('edit', 'delete'),
- prepend_template=CONSOLEPORT_BUTTONS
- )
- class Meta(DeviceComponentTable.Meta):
- model = ConsolePort
- fields = (
- 'pk', 'name', 'label', 'type', 'speed', 'description', 'mark_connected', 'cable', 'cable_color',
- 'cable_peer', 'connection', 'tags', 'actions'
- )
- default_columns = ('pk', 'name', 'label', 'type', 'speed', 'description', 'cable', 'connection', 'actions')
- row_attrs = {
- 'class': get_cabletermination_row_class
- }
- class ConsoleServerPortTable(DeviceComponentTable, PathEndpointTable):
- device = tables.Column(
- linkify={
- 'viewname': 'dcim:device_consoleserverports',
- 'args': [Accessor('device_id')],
- }
- )
- tags = TagColumn(
- url_name='dcim:consoleserverport_list'
- )
- class Meta(DeviceComponentTable.Meta):
- model = ConsoleServerPort
- fields = (
- 'pk', 'device', 'name', 'label', 'type', 'speed', 'description', 'mark_connected', 'cable', 'cable_color',
- 'cable_peer', 'connection', 'tags',
- )
- default_columns = ('pk', 'device', 'name', 'label', 'type', 'speed', 'description')
- class DeviceConsoleServerPortTable(ConsoleServerPortTable):
- name = tables.TemplateColumn(
- template_code='<i class="mdi mdi-console-network-outline"></i> '
- '<a href="{{ record.get_absolute_url }}">{{ value }}</a>',
- order_by=Accessor('_name'),
- attrs={'td': {'class': 'text-nowrap'}}
- )
- actions = ButtonsColumn(
- model=ConsoleServerPort,
- buttons=('edit', 'delete'),
- prepend_template=CONSOLESERVERPORT_BUTTONS
- )
- class Meta(DeviceComponentTable.Meta):
- model = ConsoleServerPort
- fields = (
- 'pk', 'name', 'label', 'type', 'speed', 'description', 'mark_connected', 'cable', 'cable_color',
- 'cable_peer', 'connection', 'tags', 'actions',
- )
- default_columns = ('pk', 'name', 'label', 'type', 'speed', 'description', 'cable', 'connection', 'actions')
- row_attrs = {
- 'class': get_cabletermination_row_class
- }
- class PowerPortTable(DeviceComponentTable, PathEndpointTable):
- device = tables.Column(
- linkify={
- 'viewname': 'dcim:device_powerports',
- 'args': [Accessor('device_id')],
- }
- )
- tags = TagColumn(
- url_name='dcim:powerport_list'
- )
- class Meta(DeviceComponentTable.Meta):
- model = PowerPort
- fields = (
- 'pk', 'device', 'name', 'label', 'type', 'description', 'mark_connected', 'maximum_draw', 'allocated_draw',
- 'cable', 'cable_color', 'cable_peer', 'connection', 'tags',
- )
- default_columns = ('pk', 'device', 'name', 'label', 'type', 'maximum_draw', 'allocated_draw', 'description')
- class DevicePowerPortTable(PowerPortTable):
- name = tables.TemplateColumn(
- template_code='<i class="mdi mdi-power-plug-outline"></i> <a href="{{ record.get_absolute_url }}">'
- '{{ value }}</a>',
- order_by=Accessor('_name'),
- attrs={'td': {'class': 'text-nowrap'}}
- )
- actions = ButtonsColumn(
- model=PowerPort,
- buttons=('edit', 'delete'),
- prepend_template=POWERPORT_BUTTONS
- )
- class Meta(DeviceComponentTable.Meta):
- model = PowerPort
- fields = (
- 'pk', 'name', 'label', 'type', 'maximum_draw', 'allocated_draw', 'description', 'mark_connected', 'cable',
- 'cable_color', 'cable_peer', 'connection', 'tags', 'actions',
- )
- default_columns = (
- 'pk', 'name', 'label', 'type', 'maximum_draw', 'allocated_draw', 'description', 'cable', 'connection',
- 'actions',
- )
- row_attrs = {
- 'class': get_cabletermination_row_class
- }
- class PowerOutletTable(DeviceComponentTable, PathEndpointTable):
- device = tables.Column(
- linkify={
- 'viewname': 'dcim:device_poweroutlets',
- 'args': [Accessor('device_id')],
- }
- )
- power_port = tables.Column(
- linkify=True
- )
- tags = TagColumn(
- url_name='dcim:poweroutlet_list'
- )
- class Meta(DeviceComponentTable.Meta):
- model = PowerOutlet
- fields = (
- 'pk', 'device', 'name', 'label', 'type', 'description', 'power_port', 'feed_leg', 'mark_connected', 'cable',
- 'cable_color', 'cable_peer', 'connection', 'tags',
- )
- default_columns = ('pk', 'device', 'name', 'label', 'type', 'power_port', 'feed_leg', 'description')
- class DevicePowerOutletTable(PowerOutletTable):
- name = tables.TemplateColumn(
- template_code='<i class="mdi mdi-power-socket"></i> <a href="{{ record.get_absolute_url }}">{{ value }}</a>',
- order_by=Accessor('_name'),
- attrs={'td': {'class': 'text-nowrap'}}
- )
- actions = ButtonsColumn(
- model=PowerOutlet,
- buttons=('edit', 'delete'),
- prepend_template=POWEROUTLET_BUTTONS
- )
- class Meta(DeviceComponentTable.Meta):
- model = PowerOutlet
- fields = (
- 'pk', 'name', 'label', 'type', 'power_port', 'feed_leg', 'description', 'mark_connected', 'cable',
- 'cable_color', 'cable_peer', 'connection', 'tags', 'actions',
- )
- default_columns = (
- 'pk', 'name', 'label', 'type', 'power_port', 'feed_leg', 'description', 'cable', 'connection', 'actions',
- )
- row_attrs = {
- 'class': get_cabletermination_row_class
- }
- class BaseInterfaceTable(BaseTable):
- enabled = BooleanColumn()
- ip_addresses = tables.TemplateColumn(
- template_code=INTERFACE_IPADDRESSES,
- orderable=False,
- verbose_name='IP Addresses'
- )
- untagged_vlan = tables.Column(linkify=True)
- tagged_vlans = tables.TemplateColumn(
- template_code=INTERFACE_TAGGED_VLANS,
- orderable=False,
- verbose_name='Tagged VLANs'
- )
- class InterfaceTable(DeviceComponentTable, BaseInterfaceTable, PathEndpointTable):
- device = tables.Column(
- linkify={
- 'viewname': 'dcim:device_interfaces',
- 'args': [Accessor('device_id')],
- }
- )
- mgmt_only = BooleanColumn()
- tags = TagColumn(
- url_name='dcim:interface_list'
- )
- class Meta(DeviceComponentTable.Meta):
- model = Interface
- fields = (
- 'pk', 'device', 'name', 'label', 'enabled', 'type', 'mgmt_only', 'mtu', 'mode', 'mac_address',
- 'description', 'mark_connected', 'cable', 'cable_color', 'cable_peer', 'connection', 'tags', 'ip_addresses',
- 'untagged_vlan', 'tagged_vlans',
- )
- default_columns = ('pk', 'device', 'name', 'label', 'enabled', 'type', 'description')
- class DeviceInterfaceTable(InterfaceTable):
- name = tables.TemplateColumn(
- template_code='<i class="mdi mdi-{% if iface.mgmt_only %}wrench{% elif iface.is_lag %}drag-horizontal-variant'
- '{% elif iface.is_virtual %}circle{% elif iface.is_wireless %}wifi{% else %}ethernet'
- '{% endif %}"></i> <a href="{{ record.get_absolute_url }}">{{ value }}</a>',
- order_by=Accessor('_name'),
- attrs={'td': {'class': 'text-nowrap'}}
- )
- parent = tables.Column(
- linkify=True,
- verbose_name='Parent'
- )
- lag = tables.Column(
- linkify=True,
- verbose_name='LAG'
- )
- actions = ButtonsColumn(
- model=Interface,
- buttons=('edit', 'delete'),
- prepend_template=INTERFACE_BUTTONS
- )
- class Meta(DeviceComponentTable.Meta):
- model = Interface
- fields = (
- 'pk', 'name', 'label', 'enabled', 'type', 'parent', 'lag', 'mgmt_only', 'mtu', 'mode', 'mac_address',
- 'description', 'mark_connected', 'cable', 'cable_color', 'cable_peer', 'connection', 'tags', 'ip_addresses',
- 'untagged_vlan', 'tagged_vlans', 'actions',
- )
- order_by = ('name',)
- default_columns = (
- 'pk', 'name', 'label', 'enabled', 'type', 'parent', 'lag', 'mtu', 'mode', 'description', 'ip_addresses',
- 'cable', 'connection', 'actions',
- )
- row_attrs = {
- 'class': get_cabletermination_row_class,
- 'data-name': lambda record: record.name,
- }
- class FrontPortTable(DeviceComponentTable, CableTerminationTable):
- device = tables.Column(
- linkify={
- 'viewname': 'dcim:device_frontports',
- 'args': [Accessor('device_id')],
- }
- )
- rear_port_position = tables.Column(
- verbose_name='Position'
- )
- rear_port = tables.Column(
- linkify=True
- )
- tags = TagColumn(
- url_name='dcim:frontport_list'
- )
- class Meta(DeviceComponentTable.Meta):
- model = FrontPort
- fields = (
- 'pk', 'device', 'name', 'label', 'type', 'rear_port', 'rear_port_position', 'description', 'mark_connected',
- 'cable', 'cable_color', 'cable_peer', 'tags',
- )
- default_columns = ('pk', 'device', 'name', 'label', 'type', 'rear_port', 'rear_port_position', 'description')
- class DeviceFrontPortTable(FrontPortTable):
- name = tables.TemplateColumn(
- template_code='<i class="mdi mdi-square-rounded{% if not record.cable %}-outline{% endif %}"></i> '
- '<a href="{{ record.get_absolute_url }}">{{ value }}</a>',
- order_by=Accessor('_name'),
- attrs={'td': {'class': 'text-nowrap'}}
- )
- actions = ButtonsColumn(
- model=FrontPort,
- buttons=('edit', 'delete'),
- prepend_template=FRONTPORT_BUTTONS
- )
- class Meta(DeviceComponentTable.Meta):
- model = FrontPort
- fields = (
- 'pk', 'name', 'label', 'type', 'rear_port', 'rear_port_position', 'description', 'mark_connected', 'cable',
- 'cable_color', 'cable_peer', 'tags', 'actions',
- )
- default_columns = (
- 'pk', 'name', 'label', 'type', 'rear_port', 'rear_port_position', 'description', 'cable', 'cable_peer',
- 'actions',
- )
- row_attrs = {
- 'class': get_cabletermination_row_class
- }
- class RearPortTable(DeviceComponentTable, CableTerminationTable):
- device = tables.Column(
- linkify={
- 'viewname': 'dcim:device_rearports',
- 'args': [Accessor('device_id')],
- }
- )
- tags = TagColumn(
- url_name='dcim:rearport_list'
- )
- class Meta(DeviceComponentTable.Meta):
- model = RearPort
- fields = (
- 'pk', 'device', 'name', 'label', 'type', 'positions', 'description', 'mark_connected', 'cable',
- 'cable_color', 'cable_peer', 'tags',
- )
- default_columns = ('pk', 'device', 'name', 'label', 'type', 'description')
- class DeviceRearPortTable(RearPortTable):
- name = tables.TemplateColumn(
- template_code='<i class="mdi mdi-square-rounded{% if not record.cable %}-outline{% endif %}"></i> '
- '<a href="{{ record.get_absolute_url }}">{{ value }}</a>',
- order_by=Accessor('_name'),
- attrs={'td': {'class': 'text-nowrap'}}
- )
- actions = ButtonsColumn(
- model=RearPort,
- buttons=('edit', 'delete'),
- prepend_template=REARPORT_BUTTONS
- )
- class Meta(DeviceComponentTable.Meta):
- model = RearPort
- fields = (
- 'pk', 'name', 'label', 'type', 'positions', 'description', 'mark_connected', 'cable', 'cable_color',
- 'cable_peer', 'tags', 'actions',
- )
- default_columns = (
- 'pk', 'name', 'label', 'type', 'positions', 'description', 'cable', 'cable_peer', 'actions',
- )
- row_attrs = {
- 'class': get_cabletermination_row_class
- }
- class DeviceBayTable(DeviceComponentTable):
- device = tables.Column(
- linkify={
- 'viewname': 'dcim:device_devicebays',
- 'args': [Accessor('device_id')],
- }
- )
- status = tables.TemplateColumn(
- template_code=DEVICEBAY_STATUS
- )
- installed_device = tables.Column(
- linkify=True
- )
- tags = TagColumn(
- url_name='dcim:devicebay_list'
- )
- class Meta(DeviceComponentTable.Meta):
- model = DeviceBay
- fields = ('pk', 'device', 'name', 'label', 'status', 'installed_device', 'description', 'tags')
- default_columns = ('pk', 'device', 'name', 'label', 'status', 'installed_device', 'description')
- class DeviceDeviceBayTable(DeviceBayTable):
- name = tables.TemplateColumn(
- template_code='<i class="mdi mdi-circle{% if record.installed_device %}slice-8{% else %}outline{% endif %}'
- '"></i> <a href="{{ record.get_absolute_url }}">{{ value }}</a>',
- order_by=Accessor('_name'),
- attrs={'td': {'class': 'text-nowrap'}}
- )
- actions = ButtonsColumn(
- model=DeviceBay,
- buttons=('edit', 'delete'),
- prepend_template=DEVICEBAY_BUTTONS
- )
- class Meta(DeviceComponentTable.Meta):
- model = DeviceBay
- fields = (
- 'pk', 'name', 'label', 'status', 'installed_device', 'description', 'tags', 'actions',
- )
- default_columns = (
- 'pk', 'name', 'label', 'status', 'installed_device', 'description', 'actions',
- )
- class InventoryItemTable(DeviceComponentTable):
- device = tables.Column(
- linkify={
- 'viewname': 'dcim:device_inventory',
- 'args': [Accessor('device_id')],
- }
- )
- manufacturer = tables.Column(
- linkify=True
- )
- discovered = BooleanColumn()
- tags = TagColumn(
- url_name='dcim:inventoryitem_list'
- )
- cable = None # Override DeviceComponentTable
- class Meta(DeviceComponentTable.Meta):
- model = InventoryItem
- fields = (
- 'pk', 'device', 'name', 'label', 'manufacturer', 'part_id', 'serial', 'asset_tag', 'description',
- 'discovered', 'tags',
- )
- default_columns = ('pk', 'device', 'name', 'label', 'manufacturer', 'part_id', 'serial', 'asset_tag')
- class DeviceInventoryItemTable(InventoryItemTable):
- name = tables.TemplateColumn(
- template_code='<a href="{{ record.get_absolute_url }}" style="padding-left: {{ record.level }}0px">'
- '{{ value }}</a>',
- order_by=Accessor('_name'),
- attrs={'td': {'class': 'text-nowrap'}}
- )
- actions = ButtonsColumn(
- model=InventoryItem,
- buttons=('edit', 'delete')
- )
- class Meta(DeviceComponentTable.Meta):
- model = InventoryItem
- fields = (
- 'pk', 'name', 'label', 'manufacturer', 'part_id', 'serial', 'asset_tag', 'description', 'discovered',
- 'tags', 'actions',
- )
- default_columns = (
- 'pk', 'name', 'label', 'manufacturer', 'part_id', 'serial', 'asset_tag', 'description', 'discovered',
- 'actions',
- )
- #
- # Virtual chassis
- #
- class VirtualChassisTable(BaseTable):
- pk = ToggleColumn()
- name = tables.Column(
- linkify=True
- )
- master = tables.Column(
- linkify=True
- )
- member_count = LinkedCountColumn(
- viewname='dcim:device_list',
- url_params={'virtual_chassis_id': 'pk'},
- verbose_name='Members'
- )
- tags = TagColumn(
- url_name='dcim:virtualchassis_list'
- )
- class Meta(BaseTable.Meta):
- model = VirtualChassis
- fields = ('pk', 'name', 'domain', 'master', 'member_count', 'tags')
- default_columns = ('pk', 'name', 'domain', 'master', 'member_count')
|