| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014 |
- import django_tables2 as tables
- from django_tables2.utils import Accessor
- from tenancy.tables import COL_TENANT
- from utilities.tables import (
- BaseTable, BooleanColumn, ButtonsColumn, ColorColumn, ColoredLabelColumn, TagColumn, ToggleColumn,
- )
- from .models import (
- Cable, ConsolePort, ConsolePortTemplate, ConsoleServerPort, ConsoleServerPortTemplate, Device, DeviceBay,
- DeviceBayTemplate, DeviceRole, DeviceType, FrontPort, FrontPortTemplate, Interface, InterfaceTemplate,
- InventoryItem, Manufacturer, Platform, PowerFeed, PowerOutlet, PowerOutletTemplate, PowerPanel, PowerPort,
- PowerPortTemplate, Rack, RackGroup, RackReservation, RackRole, RearPort, RearPortTemplate, Region, Site,
- VirtualChassis,
- )
- MPTT_LINK = """
- {% if record.get_children %}
- <span style="padding-left: {{ record.get_ancestors|length }}0px "><i class="fa fa-caret-right"></i>
- {% else %}
- <span style="padding-left: {{ record.get_ancestors|length }}9px">
- {% endif %}
- <a href="{{ record.get_absolute_url }}">{{ record.name }}</a>
- </span>
- """
- SITE_REGION_LINK = """
- {% if record.region %}
- <a href="{% url 'dcim:site_list' %}?region={{ record.region.slug }}">{{ record.region }}</a>
- {% else %}
- —
- {% endif %}
- """
- COLOR_LABEL = """
- {% load helpers %}
- <label class="label" style="color: {{ record.color|fgcolor }}; background-color: #{{ record.color }}">{{ record }}</label>
- """
- DEVICE_LINK = """
- <a href="{% url 'dcim:device' pk=record.pk %}">
- {{ record.name|default:'<span class="label label-info">Unnamed device</span>' }}
- </a>
- """
- RACKGROUP_ELEVATIONS = """
- <a href="{% url 'dcim:rack_elevation_list' %}?site={{ record.site.slug }}&group_id={{ record.pk }}" class="btn btn-xs btn-primary" title="View elevations">
- <i class="fa fa-eye"></i>
- </a>
- """
- RACK_DEVICE_COUNT = """
- <a href="{% url 'dcim:device_list' %}?rack_id={{ record.pk }}">{{ value }}</a>
- """
- DEVICEROLE_DEVICE_COUNT = """
- <a href="{% url 'dcim:device_list' %}?role={{ record.slug }}">{{ value }}</a>
- """
- DEVICEROLE_VM_COUNT = """
- <a href="{% url 'virtualization:virtualmachine_list' %}?role={{ record.slug }}">{{ value }}</a>
- """
- PLATFORM_DEVICE_COUNT = """
- <a href="{% url 'dcim:device_list' %}?platform={{ record.slug }}">{{ value }}</a>
- """
- PLATFORM_VM_COUNT = """
- <a href="{% url 'virtualization:virtualmachine_list' %}?platform={{ record.slug }}">{{ value }}</a>
- """
- STATUS_LABEL = """
- <span class="label label-{{ record.get_status_class }}">{{ record.get_status_display }}</span>
- """
- TYPE_LABEL = """
- <span class="label label-{{ record.get_type_class }}">{{ record.get_type_display }}</span>
- """
- DEVICE_PRIMARY_IP = """
- {{ record.primary_ip6.address.ip|default:"" }}
- {% if record.primary_ip6 and record.primary_ip4 %}<br />{% endif %}
- {{ record.primary_ip4.address.ip|default:"" }}
- """
- DEVICETYPE_INSTANCES_TEMPLATE = """
- <a href="{% url 'dcim:device_list' %}?manufacturer_id={{ record.manufacturer_id }}&device_type_id={{ record.pk }}">{{ record.instance_count }}</a>
- """
- UTILIZATION_GRAPH = """
- {% load helpers %}
- {% utilization_graph value %}
- """
- CABLE_TERMINATION_PARENT = """
- {% if value.device %}
- <a href="{{ value.device.get_absolute_url }}">{{ value.device }}</a>
- {% elif value.circuit %}
- <a href="{{ value.circuit.get_absolute_url }}">{{ value.circuit }}</a>
- {% elif value.power_panel %}
- <a href="{{ value.power_panel.get_absolute_url }}">{{ value.power_panel }}</a>
- {% endif %}
- """
- CABLE_LENGTH = """
- {% if record.length %}{{ record.length }} {{ record.get_length_unit_display }}{% else %}—{% endif %}
- """
- POWERPANEL_POWERFEED_COUNT = """
- <a href="{% url 'dcim:powerfeed_list' %}?power_panel_id={{ record.pk }}">{{ value }}</a>
- """
- INTERFACE_IPADDRESSES = """
- {% for ip in record.ip_addresses.unrestricted %}
- <a href="{{ ip.get_absolute_url }}">{{ ip }}</a><br />
- {% endfor %}
- """
- INTERFACE_TAGGED_VLANS = """
- {% for vlan in record.tagged_vlans.unrestricted %}
- <a href="{{ vlan.get_absolute_url }}">{{ vlan }}</a><br />
- {% endfor %}
- """
- #
- # 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 = tables.TemplateColumn(
- template_code=STATUS_LABEL
- )
- region = tables.TemplateColumn(
- template_code=SITE_REGION_LINK
- )
- 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')
- #
- # Rack groups
- #
- class RackGroupTable(BaseTable):
- pk = ToggleColumn()
- name = tables.TemplateColumn(
- template_code=MPTT_LINK,
- orderable=False
- )
- site = tables.LinkColumn(
- viewname='dcim:site',
- args=[Accessor('site__slug')],
- verbose_name='Site'
- )
- rack_count = tables.Column(
- verbose_name='Racks'
- )
- actions = ButtonsColumn(
- model=RackGroup,
- prepend_template=RACKGROUP_ELEVATIONS
- )
- class Meta(BaseTable.Meta):
- model = RackGroup
- fields = ('pk', 'name', 'site', 'rack_count', 'description', 'slug', 'actions')
- default_columns = ('pk', 'name', 'site', 'rack_count', 'description', 'actions')
- #
- # Rack roles
- #
- class RackRoleTable(BaseTable):
- pk = ToggleColumn()
- rack_count = tables.Column(verbose_name='Racks')
- color = tables.TemplateColumn(COLOR_LABEL)
- actions = ButtonsColumn(RackRole)
- class Meta(BaseTable.Meta):
- model = RackRole
- fields = ('pk', 'name', 'rack_count', 'color', 'description', 'slug', 'actions')
- default_columns = ('pk', 'name', 'rack_count', 'color', 'description', 'actions')
- #
- # Racks
- #
- class RackTable(BaseTable):
- pk = ToggleColumn()
- name = tables.LinkColumn(
- order_by=('_name',)
- )
- site = tables.LinkColumn(
- viewname='dcim:site',
- args=[Accessor('site__slug')]
- )
- tenant = tables.TemplateColumn(
- template_code=COL_TENANT
- )
- status = tables.TemplateColumn(
- template_code=STATUS_LABEL
- )
- role = ColoredLabelColumn()
- u_height = tables.TemplateColumn(
- template_code="{{ record.u_height }}U",
- verbose_name='Height'
- )
- class Meta(BaseTable.Meta):
- model = Rack
- fields = (
- 'pk', 'name', 'site', 'group', 'status', 'facility_id', 'tenant', 'role', 'serial', 'asset_tag', 'type',
- 'width', 'u_height',
- )
- default_columns = ('pk', 'name', 'site', 'group', 'status', 'facility_id', 'tenant', 'role', 'u_height')
- class RackDetailTable(RackTable):
- device_count = tables.TemplateColumn(
- template_code=RACK_DEVICE_COUNT,
- verbose_name='Devices'
- )
- get_utilization = tables.TemplateColumn(
- template_code=UTILIZATION_GRAPH,
- orderable=False,
- verbose_name='Space'
- )
- get_power_utilization = tables.TemplateColumn(
- template_code=UTILIZATION_GRAPH,
- orderable=False,
- verbose_name='Power'
- )
- tags = TagColumn(
- url_name='dcim:rack_list'
- )
- class Meta(RackTable.Meta):
- fields = (
- 'pk', 'name', 'site', 'group', 'status', 'facility_id', 'tenant', 'role', 'serial', 'asset_tag', 'type',
- 'width', 'u_height', 'device_count', 'get_utilization', 'get_power_utilization', 'tags',
- )
- default_columns = (
- 'pk', 'name', 'site', 'group', 'status', 'facility_id', 'tenant', 'role', 'u_height', 'device_count',
- 'get_utilization', 'get_power_utilization',
- )
- #
- # Rack reservations
- #
- class RackReservationTable(BaseTable):
- pk = ToggleColumn()
- reservation = tables.Column(
- accessor='pk',
- linkify=True
- )
- site = tables.Column(
- accessor=Accessor('rack__site'),
- linkify=True
- )
- tenant = tables.TemplateColumn(
- template_code=COL_TENANT
- )
- rack = tables.Column(
- linkify=True
- )
- unit_list = tables.Column(
- orderable=False,
- verbose_name='Units'
- )
- tags = TagColumn(
- url_name='dcim:rackreservation_list'
- )
- actions = ButtonsColumn(RackReservation)
- class Meta(BaseTable.Meta):
- model = RackReservation
- fields = (
- 'pk', 'reservation', 'site', 'rack', 'unit_list', 'user', 'created', 'tenant', 'description', 'tags',
- 'actions',
- )
- default_columns = (
- 'pk', 'reservation', 'site', 'rack', 'unit_list', 'user', 'description', 'actions',
- )
- #
- # Manufacturers
- #
- class ManufacturerTable(BaseTable):
- pk = ToggleColumn()
- name = tables.LinkColumn()
- devicetype_count = tables.Column(
- verbose_name='Device Types'
- )
- inventoryitem_count = tables.Column(
- verbose_name='Inventory Items'
- )
- platform_count = tables.Column(
- verbose_name='Platforms'
- )
- slug = tables.Column()
- actions = ButtonsColumn(Manufacturer, pk_field='slug')
- class Meta(BaseTable.Meta):
- model = Manufacturer
- fields = (
- 'pk', 'name', 'devicetype_count', 'inventoryitem_count', 'platform_count', 'description', 'slug', 'actions',
- )
- #
- # Device types
- #
- class DeviceTypeTable(BaseTable):
- pk = ToggleColumn()
- model = tables.Column(
- linkify=True,
- verbose_name='Device Type'
- )
- is_full_depth = BooleanColumn(
- verbose_name='Full Depth'
- )
- instance_count = tables.TemplateColumn(
- template_code=DEVICETYPE_INSTANCES_TEMPLATE,
- verbose_name='Instances'
- )
- tags = TagColumn(
- url_name='dcim:devicetype_list'
- )
- class Meta(BaseTable.Meta):
- model = DeviceType
- fields = (
- 'pk', 'model', 'manufacturer', 'slug', 'part_number', 'u_height', 'is_full_depth', 'subdevice_role',
- 'instance_count', 'tags',
- )
- default_columns = (
- 'pk', 'model', 'manufacturer', 'part_number', 'u_height', 'is_full_depth', 'instance_count',
- )
- #
- # Device type components
- #
- class ComponentTemplateTable(BaseTable):
- pk = ToggleColumn()
- name = tables.Column(
- order_by=('_name',)
- )
- class ConsolePortTemplateTable(ComponentTemplateTable):
- actions = ButtonsColumn(
- model=ConsolePortTemplate,
- buttons=('edit', 'delete')
- )
- class Meta(BaseTable.Meta):
- model = ConsolePortTemplate
- fields = ('pk', 'name', 'label', 'type', 'description', 'actions')
- empty_text = "None"
- class ConsoleServerPortTemplateTable(ComponentTemplateTable):
- actions = ButtonsColumn(
- model=ConsoleServerPortTemplate,
- buttons=('edit', 'delete')
- )
- class Meta(BaseTable.Meta):
- model = ConsoleServerPortTemplate
- fields = ('pk', 'name', 'label', 'type', 'description', 'actions')
- empty_text = "None"
- class PowerPortTemplateTable(ComponentTemplateTable):
- actions = ButtonsColumn(
- model=PowerPortTemplate,
- buttons=('edit', 'delete')
- )
- class Meta(BaseTable.Meta):
- model = PowerPortTemplate
- fields = ('pk', 'name', 'label', 'type', 'maximum_draw', 'allocated_draw', 'description', 'actions')
- empty_text = "None"
- class PowerOutletTemplateTable(ComponentTemplateTable):
- actions = ButtonsColumn(
- model=PowerOutletTemplate,
- buttons=('edit', 'delete')
- )
- class Meta(BaseTable.Meta):
- model = PowerOutletTemplate
- fields = ('pk', 'name', 'label', 'type', 'power_port', 'feed_leg', 'description', 'actions')
- empty_text = "None"
- class InterfaceTemplateTable(ComponentTemplateTable):
- mgmt_only = BooleanColumn(
- verbose_name='Management Only'
- )
- actions = ButtonsColumn(
- model=InterfaceTemplate,
- buttons=('edit', 'delete')
- )
- class Meta(BaseTable.Meta):
- model = InterfaceTemplate
- fields = ('pk', 'name', 'label', 'mgmt_only', 'type', 'description', 'actions')
- empty_text = "None"
- class FrontPortTemplateTable(ComponentTemplateTable):
- rear_port_position = tables.Column(
- verbose_name='Position'
- )
- actions = ButtonsColumn(
- model=FrontPortTemplate,
- buttons=('edit', 'delete')
- )
- class Meta(BaseTable.Meta):
- model = FrontPortTemplate
- fields = ('pk', 'name', 'label', 'type', 'rear_port', 'rear_port_position', 'description', 'actions')
- empty_text = "None"
- class RearPortTemplateTable(ComponentTemplateTable):
- actions = ButtonsColumn(
- model=RearPortTemplate,
- buttons=('edit', 'delete')
- )
- class Meta(BaseTable.Meta):
- model = RearPortTemplate
- fields = ('pk', 'name', 'label', 'type', 'positions', 'description', 'actions')
- empty_text = "None"
- class DeviceBayTemplateTable(ComponentTemplateTable):
- actions = ButtonsColumn(
- model=DeviceBayTemplate,
- buttons=('edit', 'delete')
- )
- class Meta(BaseTable.Meta):
- model = DeviceBayTemplate
- fields = ('pk', 'name', 'label', 'description', 'actions')
- empty_text = "None"
- #
- # Device roles
- #
- class DeviceRoleTable(BaseTable):
- pk = ToggleColumn()
- device_count = tables.TemplateColumn(
- template_code=DEVICEROLE_DEVICE_COUNT,
- accessor=Accessor('devices.unrestricted.count'),
- orderable=False,
- verbose_name='Devices'
- )
- vm_count = tables.TemplateColumn(
- template_code=DEVICEROLE_VM_COUNT,
- accessor=Accessor('virtual_machines.unrestricted.count'),
- orderable=False,
- verbose_name='VMs'
- )
- color = tables.TemplateColumn(
- template_code=COLOR_LABEL,
- verbose_name='Label'
- )
- vm_role = BooleanColumn()
- actions = ButtonsColumn(DeviceRole, pk_field='slug')
- 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()
- device_count = tables.TemplateColumn(
- template_code=PLATFORM_DEVICE_COUNT,
- accessor=Accessor('devices.count'),
- orderable=False,
- verbose_name='Devices'
- )
- vm_count = tables.TemplateColumn(
- template_code=PLATFORM_VM_COUNT,
- accessor=Accessor('virtual_machines.count'),
- orderable=False,
- verbose_name='VMs'
- )
- actions = ButtonsColumn(Platform, pk_field='slug')
- 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 = tables.TemplateColumn(
- template_code=STATUS_LABEL
- )
- tenant = tables.TemplateColumn(
- template_code=COL_TENANT
- )
- site = tables.Column(
- linkify=True
- )
- rack = tables.Column(
- linkify=True
- )
- device_role = ColoredLabelColumn(
- verbose_name='Role'
- )
- device_type = tables.LinkColumn(
- viewname='dcim:devicetype',
- args=[Accessor('device_type__pk')],
- verbose_name='Type',
- text=lambda record: record.device_type.display_name
- )
- primary_ip = tables.TemplateColumn(
- template_code=DEVICE_PRIMARY_IP,
- orderable=False,
- 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.LinkColumn(
- viewname='virtualization:cluster',
- args=[Accessor('cluster__pk')]
- )
- virtual_chassis = tables.LinkColumn(
- viewname='dcim:virtualchassis',
- args=[Accessor('virtual_chassis__pk')]
- )
- 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', 'device_type', 'platform', 'serial', 'asset_tag', 'site',
- 'rack', 'position', 'face', 'primary_ip', 'primary_ip4', 'primary_ip6', 'cluster', 'virtual_chassis',
- 'vc_position', 'vc_priority', 'tags',
- )
- default_columns = (
- 'pk', 'name', 'status', 'tenant', 'site', 'rack', 'device_role', 'device_type', 'primary_ip',
- )
- class DeviceImportTable(BaseTable):
- name = tables.TemplateColumn(
- template_code=DEVICE_LINK
- )
- status = tables.TemplateColumn(
- template_code=STATUS_LABEL
- )
- tenant = tables.TemplateColumn(
- template_code=COL_TENANT
- )
- 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
- )
- class Meta(BaseTable.Meta):
- order_by = ('device', 'name')
- class ConsolePortTable(DeviceComponentTable):
- class Meta(DeviceComponentTable.Meta):
- model = ConsolePort
- fields = ('pk', 'device', 'name', 'label', 'type', 'description', 'cable')
- default_columns = ('pk', 'device', 'name', 'label', 'type', 'description')
- class ConsoleServerPortTable(DeviceComponentTable):
- class Meta(DeviceComponentTable.Meta):
- model = ConsoleServerPort
- fields = ('pk', 'device', 'name', 'label', 'type', 'description', 'cable')
- default_columns = ('pk', 'device', 'name', 'label', 'type', 'description')
- class PowerPortTable(DeviceComponentTable):
- class Meta(DeviceComponentTable.Meta):
- model = PowerPort
- fields = ('pk', 'device', 'name', 'label', 'type', 'description', 'maximum_draw', 'allocated_draw', 'cable')
- default_columns = ('pk', 'device', 'name', 'label', 'type', 'maximum_draw', 'allocated_draw', 'description')
- class PowerOutletTable(DeviceComponentTable):
- class Meta(DeviceComponentTable.Meta):
- model = PowerOutlet
- fields = ('pk', 'device', 'name', 'label', 'type', 'description', 'power_port', 'feed_leg', 'cable')
- default_columns = ('pk', 'device', 'name', 'label', 'type', 'power_port', 'feed_leg', 'description')
- 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):
- class Meta(DeviceComponentTable.Meta):
- model = Interface
- fields = (
- 'pk', 'device', 'name', 'label', 'enabled', 'type', 'mgmt_only', 'mtu', 'mode', 'description', 'cable',
- 'ip_addresses', 'untagged_vlan', 'tagged_vlans',
- )
- default_columns = ('pk', 'device', 'name', 'label', 'enabled', 'type', 'description')
- class FrontPortTable(DeviceComponentTable):
- rear_port_position = tables.Column(
- verbose_name='Position'
- )
- class Meta(DeviceComponentTable.Meta):
- model = FrontPort
- fields = ('pk', 'device', 'name', 'label', 'type', 'rear_port', 'rear_port_position', 'description', 'cable')
- default_columns = ('pk', 'device', 'name', 'label', 'type', 'rear_port', 'rear_port_position', 'description')
- class RearPortTable(DeviceComponentTable):
- class Meta(DeviceComponentTable.Meta):
- model = RearPort
- fields = ('pk', 'device', 'name', 'label', 'type', 'positions', 'description', 'cable')
- default_columns = ('pk', 'device', 'name', 'label', 'type', 'description')
- class DeviceBayTable(DeviceComponentTable):
- installed_device = tables.Column(
- linkify=True
- )
- class Meta(DeviceComponentTable.Meta):
- model = DeviceBay
- fields = ('pk', 'device', 'name', 'label', 'installed_device', 'description')
- default_columns = ('pk', 'device', 'name', 'label', 'installed_device', 'description')
- class InventoryItemTable(DeviceComponentTable):
- manufacturer = tables.Column(
- linkify=True
- )
- discovered = BooleanColumn()
- class Meta(DeviceComponentTable.Meta):
- model = InventoryItem
- fields = (
- 'pk', 'device', 'name', 'label', 'manufacturer', 'part_id', 'serial', 'asset_tag', 'description',
- 'discovered',
- )
- default_columns = ('pk', 'device', 'name', 'label', 'manufacturer', 'part_id', 'serial', 'asset_tag')
- #
- # Cables
- #
- class CableTable(BaseTable):
- pk = ToggleColumn()
- id = tables.Column(
- linkify=True,
- verbose_name='ID'
- )
- termination_a_parent = tables.TemplateColumn(
- template_code=CABLE_TERMINATION_PARENT,
- accessor=Accessor('termination_a'),
- orderable=False,
- verbose_name='Side A'
- )
- termination_a = tables.LinkColumn(
- accessor=Accessor('termination_a'),
- orderable=False,
- verbose_name='Termination A'
- )
- termination_b_parent = tables.TemplateColumn(
- template_code=CABLE_TERMINATION_PARENT,
- accessor=Accessor('termination_b'),
- orderable=False,
- verbose_name='Side B'
- )
- termination_b = tables.LinkColumn(
- accessor=Accessor('termination_b'),
- orderable=False,
- verbose_name='Termination B'
- )
- status = tables.TemplateColumn(
- template_code=STATUS_LABEL
- )
- length = tables.TemplateColumn(
- template_code=CABLE_LENGTH,
- order_by='_abs_length'
- )
- color = ColorColumn()
- tags = TagColumn(
- url_name='dcim:cable_list'
- )
- class Meta(BaseTable.Meta):
- model = Cable
- fields = (
- 'pk', 'id', 'label', 'termination_a_parent', 'termination_a', 'termination_b_parent', 'termination_b',
- 'status', 'type', 'color', 'length', 'tags',
- )
- default_columns = (
- 'pk', 'id', 'label', 'termination_a_parent', 'termination_a', 'termination_b_parent', 'termination_b',
- 'status', 'type',
- )
- #
- # Device connections
- #
- class ConsoleConnectionTable(BaseTable):
- console_server = tables.LinkColumn(
- viewname='dcim:device',
- accessor=Accessor('connected_endpoint__device'),
- args=[Accessor('connected_endpoint__device__pk')],
- verbose_name='Console Server'
- )
- connected_endpoint = tables.Column(
- verbose_name='Port'
- )
- device = tables.Column(
- linkify=True
- )
- name = tables.Column(
- verbose_name='Console Port'
- )
- connection_status = BooleanColumn()
- class Meta(BaseTable.Meta):
- model = ConsolePort
- fields = ('console_server', 'connected_endpoint', 'device', 'name', 'connection_status')
- class PowerConnectionTable(BaseTable):
- pdu = tables.LinkColumn(
- viewname='dcim:device',
- accessor=Accessor('connected_endpoint__device'),
- args=[Accessor('connected_endpoint__device__pk')],
- order_by='_connected_poweroutlet__device',
- verbose_name='PDU'
- )
- outlet = tables.Column(
- accessor=Accessor('_connected_poweroutlet'),
- verbose_name='Outlet'
- )
- device = tables.Column(
- linkify=True
- )
- name = tables.Column(
- verbose_name='Power Port'
- )
- class Meta(BaseTable.Meta):
- model = PowerPort
- fields = ('pdu', 'outlet', 'device', 'name', 'connection_status')
- class InterfaceConnectionTable(BaseTable):
- device_a = tables.LinkColumn(
- viewname='dcim:device',
- accessor=Accessor('device'),
- args=[Accessor('device__pk')],
- verbose_name='Device A'
- )
- interface_a = tables.LinkColumn(
- viewname='dcim:interface',
- accessor=Accessor('name'),
- args=[Accessor('pk')],
- verbose_name='Interface A'
- )
- device_b = tables.LinkColumn(
- viewname='dcim:device',
- accessor=Accessor('_connected_interface__device'),
- args=[Accessor('_connected_interface__device__pk')],
- verbose_name='Device B'
- )
- interface_b = tables.LinkColumn(
- viewname='dcim:interface',
- accessor=Accessor('_connected_interface'),
- args=[Accessor('_connected_interface__pk')],
- verbose_name='Interface B'
- )
- class Meta(BaseTable.Meta):
- model = Interface
- fields = (
- 'device_a', 'interface_a', 'device_b', 'interface_b', 'connection_status',
- )
- #
- # Virtual chassis
- #
- class VirtualChassisTable(BaseTable):
- pk = ToggleColumn()
- name = tables.Column(
- linkify=True
- )
- master = tables.Column(
- linkify=True
- )
- member_count = tables.Column(
- 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')
- #
- # Power panels
- #
- class PowerPanelTable(BaseTable):
- pk = ToggleColumn()
- name = tables.LinkColumn()
- site = tables.LinkColumn(
- viewname='dcim:site',
- args=[Accessor('site__slug')]
- )
- powerfeed_count = tables.TemplateColumn(
- template_code=POWERPANEL_POWERFEED_COUNT,
- verbose_name='Feeds'
- )
- tags = TagColumn(
- url_name='dcim:powerpanel_list'
- )
- class Meta(BaseTable.Meta):
- model = PowerPanel
- fields = ('pk', 'name', 'site', 'rack_group', 'powerfeed_count', 'tags')
- default_columns = ('pk', 'name', 'site', 'rack_group', 'powerfeed_count')
- #
- # Power feeds
- #
- class PowerFeedTable(BaseTable):
- pk = ToggleColumn()
- name = tables.LinkColumn()
- power_panel = tables.Column(
- linkify=True
- )
- rack = tables.Column(
- linkify=True
- )
- status = tables.TemplateColumn(
- template_code=STATUS_LABEL
- )
- type = tables.TemplateColumn(
- template_code=TYPE_LABEL
- )
- max_utilization = tables.TemplateColumn(
- template_code="{{ value }}%"
- )
- available_power = tables.Column(
- verbose_name='Available power (VA)'
- )
- tags = TagColumn(
- url_name='dcim:powerfeed_list'
- )
- class Meta(BaseTable.Meta):
- model = PowerFeed
- fields = (
- 'pk', 'name', 'power_panel', 'rack', 'status', 'type', 'supply', 'voltage', 'amperage', 'phase',
- 'max_utilization', 'available_power', 'tags',
- )
- default_columns = (
- 'pk', 'name', 'power_panel', 'rack', 'status', 'type', 'supply', 'voltage', 'amperage', 'phase',
- )
|