1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

71 lines
1.8 KiB
Python
Raw Normal View History

2016-07-26 14:58:37 -04:00
import django_tables2 as tables
from utilities.tables import BaseTable, ButtonsColumn, LinkedCountColumn, MPTTColumn, TagColumn, ToggleColumn
2016-07-26 14:58:37 -04:00
from .models import Tenant, TenantGroup
#
# Table columns
#
class TenantColumn(tables.TemplateColumn):
"""
Include the tenant description.
"""
template_code = """
{% if record.tenant %}
<a href="{{ record.tenant.get_absolute_url }}" title="{{ record.tenant.description }}">{{ record.tenant }}</a>
{% elif record.vrf.tenant %}
<a href="{{ record.vrf.tenant.get_absolute_url }}" title="{{ record.vrf.tenant.description }}">{{ record.vrf.tenant }}</a>*
{% else %}
&mdash;
{% endif %}
"""
def __init__(self, *args, **kwargs):
super().__init__(template_code=self.template_code, *args, **kwargs)
def value(self, value):
return str(value) if value else None
2016-07-26 14:58:37 -04:00
#
# Tenant groups
#
class TenantGroupTable(BaseTable):
pk = ToggleColumn()
name = MPTTColumn(
linkify=True
)
tenant_count = LinkedCountColumn(
viewname='tenancy:tenant_list',
url_params={'group_id': 'pk'},
verbose_name='Tenants'
)
actions = ButtonsColumn(TenantGroup)
2016-07-26 14:58:37 -04:00
class Meta(BaseTable.Meta):
model = TenantGroup
fields = ('pk', 'name', 'tenant_count', 'description', 'slug', 'actions')
2020-04-29 11:34:51 -04:00
default_columns = ('pk', 'name', 'tenant_count', 'description', 'actions')
2016-07-26 14:58:37 -04:00
#
# Tenants
#
class TenantTable(BaseTable):
pk = ToggleColumn()
name = tables.Column(
linkify=True
)
tags = TagColumn(
url_name='tenancy:tenant_list'
)
2016-07-26 14:58:37 -04:00
class Meta(BaseTable.Meta):
model = Tenant
fields = ('pk', 'name', 'slug', 'group', 'description', 'tags')
2020-04-29 11:34:51 -04:00
default_columns = ('pk', 'name', 'group', 'description')