mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Adds two fields to all relevant tables to allow the addition of Created & Last Updated columns. All tables with a Configure Table option were updated. Some sections reformatted to comply with E501 line length as a result of changes
39 lines
883 B
Python
39 lines
883 B
Python
import django_tables2 as tables
|
|
|
|
from utilities.tables import BaseTable, TagColumn, ToggleColumn
|
|
from ipam.models import *
|
|
|
|
__all__ = (
|
|
'ServiceTable',
|
|
)
|
|
|
|
|
|
#
|
|
# Services
|
|
#
|
|
|
|
class ServiceTable(BaseTable):
|
|
pk = ToggleColumn()
|
|
name = tables.Column(
|
|
linkify=True
|
|
)
|
|
parent = tables.Column(
|
|
linkify=True,
|
|
order_by=('device', 'virtual_machine')
|
|
)
|
|
ports = tables.TemplateColumn(
|
|
template_code='{{ record.port_list }}',
|
|
verbose_name='Ports'
|
|
)
|
|
tags = TagColumn(
|
|
url_name='ipam:service_list'
|
|
)
|
|
|
|
class Meta(BaseTable.Meta):
|
|
model = Service
|
|
fields = (
|
|
'pk', 'id', 'name', 'parent', 'protocol', 'ports', 'ipaddresses', 'description', 'tags', 'created',
|
|
'last_updated',
|
|
)
|
|
default_columns = ('pk', 'name', 'parent', 'protocol', 'ports', 'description')
|