| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- import django_tables2 as tables
- from django_tables2.utils import Accessor
- from dcim.models import Rack, RackReservation, RackRole
- from netbox.tables import NetBoxTable, columns
- from tenancy.tables import ContactsColumnMixin, TenancyColumnsMixin
- from .template_code import WEIGHT
- __all__ = (
- 'RackTable',
- 'RackReservationTable',
- 'RackRoleTable',
- )
- #
- # Rack roles
- #
- class RackRoleTable(NetBoxTable):
- name = tables.Column(linkify=True)
- rack_count = tables.Column(verbose_name='Racks')
- color = columns.ColorColumn()
- tags = columns.TagColumn(
- url_name='dcim:rackrole_list'
- )
- class Meta(NetBoxTable.Meta):
- model = RackRole
- fields = (
- 'pk', 'id', 'name', 'rack_count', 'color', 'description', 'slug', 'tags', 'actions', 'created',
- 'last_updated',
- )
- default_columns = ('pk', 'name', 'rack_count', 'color', 'description')
- #
- # Racks
- #
- class RackTable(TenancyColumnsMixin, ContactsColumnMixin, NetBoxTable):
- name = tables.Column(
- order_by=('_name',),
- linkify=True
- )
- location = tables.Column(
- linkify=True
- )
- site = tables.Column(
- linkify=True
- )
- status = columns.ChoiceFieldColumn()
- role = columns.ColoredLabelColumn()
- u_height = tables.TemplateColumn(
- template_code="{{ value }}U",
- verbose_name='Height'
- )
- comments = columns.MarkdownColumn()
- device_count = columns.LinkedCountColumn(
- viewname='dcim:device_list',
- url_params={'rack_id': 'pk'},
- verbose_name='Devices'
- )
- get_utilization = columns.UtilizationColumn(
- orderable=False,
- verbose_name='Space'
- )
- get_power_utilization = columns.UtilizationColumn(
- orderable=False,
- verbose_name='Power'
- )
- tags = columns.TagColumn(
- url_name='dcim:rack_list'
- )
- outer_width = tables.TemplateColumn(
- template_code="{{ record.outer_width }} {{ record.outer_unit }}",
- verbose_name='Outer Width'
- )
- outer_depth = tables.TemplateColumn(
- template_code="{{ record.outer_depth }} {{ record.outer_unit }}",
- verbose_name='Outer Depth'
- )
- weight = columns.TemplateColumn(
- template_code=WEIGHT,
- order_by=('_abs_weight', 'weight_unit')
- )
- max_weight = columns.TemplateColumn(
- template_code=WEIGHT,
- order_by=('_abs_max_weight', 'weight_unit')
- )
- class Meta(NetBoxTable.Meta):
- model = Rack
- fields = (
- 'pk', 'id', 'name', 'site', 'location', 'status', 'facility_id', 'tenant', 'tenant_group', 'role', 'serial',
- 'asset_tag', 'type', 'u_height', 'width', 'outer_width', 'outer_depth', 'mounting_depth', 'weight',
- 'max_weight', 'comments', 'device_count', 'get_utilization', 'get_power_utilization', 'description',
- 'contacts', 'tags', 'created', 'last_updated',
- )
- default_columns = (
- 'pk', 'name', 'site', 'location', 'status', 'facility_id', 'tenant', 'role', 'u_height', 'device_count',
- 'get_utilization',
- )
- #
- # Rack reservations
- #
- class RackReservationTable(TenancyColumnsMixin, NetBoxTable):
- reservation = tables.Column(
- accessor='pk',
- linkify=True
- )
- site = tables.Column(
- accessor=Accessor('rack__site'),
- linkify=True
- )
- location = tables.Column(
- accessor=Accessor('rack__location'),
- linkify=True
- )
- rack = tables.Column(
- linkify=True
- )
- unit_list = tables.Column(
- orderable=False,
- verbose_name='Units'
- )
- comments = columns.MarkdownColumn()
- tags = columns.TagColumn(
- url_name='dcim:rackreservation_list'
- )
- class Meta(NetBoxTable.Meta):
- model = RackReservation
- fields = (
- 'pk', 'id', 'reservation', 'site', 'location', 'rack', 'unit_list', 'user', 'created', 'tenant',
- 'tenant_group', 'description', 'comments', 'tags', 'actions', 'created', 'last_updated',
- )
- default_columns = ('pk', 'reservation', 'site', 'rack', 'unit_list', 'user', 'description')
|