| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- import django_tables2 as tables
- from django.conf import settings
- from django.utils.translation import gettext as _
- from extras.models import *
- from netbox.tables import NetBoxTable, columns
- from .template_code import *
- __all__ = (
- 'ConfigContextTable',
- 'CustomFieldTable',
- 'CustomLinkTable',
- 'ExportTemplateTable',
- 'JobResultTable',
- 'JournalEntryTable',
- 'ObjectChangeTable',
- 'SavedFilterTable',
- 'TaggedItemTable',
- 'TagTable',
- 'WebhookTable',
- )
- class CustomFieldTable(NetBoxTable):
- name = tables.Column(
- linkify=True
- )
- content_types = columns.ContentTypesColumn()
- required = columns.BooleanColumn()
- ui_visibility = columns.ChoiceFieldColumn(verbose_name="UI visibility")
- class Meta(NetBoxTable.Meta):
- model = CustomField
- fields = (
- 'pk', 'id', 'name', 'content_types', 'label', 'type', 'group_name', 'required', 'default', 'description',
- 'search_weight', 'filter_logic', 'ui_visibility', 'weight', 'choices', 'created', 'last_updated',
- )
- default_columns = ('pk', 'name', 'content_types', 'label', 'group_name', 'type', 'required', 'description')
- class JobResultTable(NetBoxTable):
- name = tables.Column(
- linkify=True
- )
- obj_type = columns.ContentTypeColumn(
- verbose_name=_('Type')
- )
- status = columns.ChoiceFieldColumn()
- created = columns.DateTimeColumn()
- scheduled = columns.DateTimeColumn()
- interval = columns.DurationColumn()
- started = columns.DateTimeColumn()
- completed = columns.DateTimeColumn()
- actions = columns.ActionsColumn(
- actions=('delete',)
- )
- class Meta(NetBoxTable.Meta):
- model = JobResult
- fields = (
- 'pk', 'id', 'obj_type', 'name', 'status', 'created', 'scheduled', 'interval', 'started', 'completed',
- 'user', 'job_id',
- )
- default_columns = (
- 'pk', 'id', 'obj_type', 'name', 'status', 'created', 'scheduled', 'interval', 'started', 'completed',
- 'user',
- )
- class CustomLinkTable(NetBoxTable):
- name = tables.Column(
- linkify=True
- )
- content_types = columns.ContentTypesColumn()
- enabled = columns.BooleanColumn()
- new_window = columns.BooleanColumn()
- class Meta(NetBoxTable.Meta):
- model = CustomLink
- fields = (
- 'pk', 'id', 'name', 'content_types', 'enabled', 'link_text', 'link_url', 'weight', 'group_name',
- 'button_class', 'new_window', 'created', 'last_updated',
- )
- default_columns = ('pk', 'name', 'content_types', 'enabled', 'group_name', 'button_class', 'new_window')
- class ExportTemplateTable(NetBoxTable):
- name = tables.Column(
- linkify=True
- )
- content_types = columns.ContentTypesColumn()
- as_attachment = columns.BooleanColumn()
- data_source = tables.Column(
- linkify=True
- )
- data_file = tables.Column(
- linkify=True
- )
- is_synced = columns.BooleanColumn(
- verbose_name='Synced'
- )
- class Meta(NetBoxTable.Meta):
- model = ExportTemplate
- fields = (
- 'pk', 'id', 'name', 'content_types', 'description', 'mime_type', 'file_extension', 'as_attachment',
- 'data_source', 'data_file', 'data_synced', 'created', 'last_updated',
- )
- default_columns = (
- 'pk', 'name', 'content_types', 'description', 'mime_type', 'file_extension', 'as_attachment', 'is_synced',
- )
- class SavedFilterTable(NetBoxTable):
- name = tables.Column(
- linkify=True
- )
- content_types = columns.ContentTypesColumn()
- enabled = columns.BooleanColumn()
- shared = columns.BooleanColumn()
- class Meta(NetBoxTable.Meta):
- model = SavedFilter
- fields = (
- 'pk', 'id', 'name', 'slug', 'content_types', 'description', 'user', 'weight', 'enabled', 'shared',
- 'created', 'last_updated',
- )
- default_columns = (
- 'pk', 'name', 'content_types', 'user', 'description', 'enabled', 'shared',
- )
- class WebhookTable(NetBoxTable):
- name = tables.Column(
- linkify=True
- )
- content_types = columns.ContentTypesColumn()
- enabled = columns.BooleanColumn()
- type_create = columns.BooleanColumn(
- verbose_name='Create'
- )
- type_update = columns.BooleanColumn(
- verbose_name='Update'
- )
- type_delete = columns.BooleanColumn(
- verbose_name='Delete'
- )
- ssl_validation = columns.BooleanColumn(
- verbose_name='SSL Validation'
- )
- class Meta(NetBoxTable.Meta):
- model = Webhook
- fields = (
- 'pk', 'id', 'name', 'content_types', 'enabled', 'type_create', 'type_update', 'type_delete', 'http_method',
- 'payload_url', 'secret', 'ssl_validation', 'ca_file_path', 'created', 'last_updated',
- )
- default_columns = (
- 'pk', 'name', 'content_types', 'enabled', 'type_create', 'type_update', 'type_delete', 'http_method',
- 'payload_url',
- )
- class TagTable(NetBoxTable):
- name = tables.Column(
- linkify=True
- )
- color = columns.ColorColumn()
- class Meta(NetBoxTable.Meta):
- model = Tag
- fields = ('pk', 'id', 'name', 'items', 'slug', 'color', 'description', 'created', 'last_updated', 'actions')
- default_columns = ('pk', 'name', 'items', 'slug', 'color', 'description')
- class TaggedItemTable(NetBoxTable):
- id = tables.Column(
- verbose_name='ID',
- linkify=lambda record: record.content_object.get_absolute_url(),
- accessor='content_object__id'
- )
- content_type = columns.ContentTypeColumn(
- verbose_name='Type'
- )
- content_object = tables.Column(
- linkify=True,
- orderable=False,
- verbose_name='Object'
- )
- actions = columns.ActionsColumn(
- actions=()
- )
- class Meta(NetBoxTable.Meta):
- model = TaggedItem
- fields = ('id', 'content_type', 'content_object')
- class ConfigContextTable(NetBoxTable):
- data_source = tables.Column(
- linkify=True
- )
- data_file = tables.Column(
- linkify=True
- )
- name = tables.Column(
- linkify=True
- )
- is_active = columns.BooleanColumn(
- verbose_name='Active'
- )
- is_synced = columns.BooleanColumn(
- verbose_name='Synced'
- )
- class Meta(NetBoxTable.Meta):
- model = ConfigContext
- fields = (
- 'pk', 'id', 'name', 'weight', 'is_active', 'is_synced', 'description', 'regions', 'sites', 'locations',
- 'roles', 'platforms', 'cluster_types', 'cluster_groups', 'clusters', 'tenant_groups', 'tenants',
- 'data_source', 'data_file', 'data_synced', 'created', 'last_updated',
- )
- default_columns = ('pk', 'name', 'weight', 'is_active', 'is_synced', 'description')
- class ObjectChangeTable(NetBoxTable):
- time = tables.DateTimeColumn(
- linkify=True,
- format=settings.SHORT_DATETIME_FORMAT
- )
- user_name = tables.Column(
- verbose_name='Username'
- )
- full_name = tables.TemplateColumn(
- accessor=tables.A('user'),
- template_code=OBJECTCHANGE_FULL_NAME,
- verbose_name='Full Name',
- orderable=False
- )
- action = columns.ChoiceFieldColumn()
- changed_object_type = columns.ContentTypeColumn(
- verbose_name='Type'
- )
- object_repr = tables.TemplateColumn(
- accessor=tables.A('changed_object'),
- template_code=OBJECTCHANGE_OBJECT,
- verbose_name='Object',
- orderable=False
- )
- request_id = tables.TemplateColumn(
- template_code=OBJECTCHANGE_REQUEST_ID,
- verbose_name='Request ID'
- )
- actions = columns.ActionsColumn(
- actions=()
- )
- class Meta(NetBoxTable.Meta):
- model = ObjectChange
- fields = (
- 'pk', 'id', 'time', 'user_name', 'full_name', 'action', 'changed_object_type', 'object_repr', 'request_id',
- 'actions',
- )
- class JournalEntryTable(NetBoxTable):
- created = tables.DateTimeColumn(
- linkify=True,
- format=settings.SHORT_DATETIME_FORMAT
- )
- assigned_object_type = columns.ContentTypeColumn(
- verbose_name='Object type'
- )
- assigned_object = tables.Column(
- linkify=True,
- orderable=False,
- verbose_name='Object'
- )
- kind = columns.ChoiceFieldColumn()
- comments = columns.MarkdownColumn()
- comments_short = tables.TemplateColumn(
- accessor=tables.A('comments'),
- template_code='{{ value|markdown|truncatewords_html:50 }}',
- verbose_name='Comments (Short)'
- )
- tags = columns.TagColumn(
- url_name='extras:journalentry_list'
- )
- class Meta(NetBoxTable.Meta):
- model = JournalEntry
- fields = (
- 'pk', 'id', 'created', 'created_by', 'assigned_object_type', 'assigned_object', 'kind', 'comments',
- 'comments_short', 'tags', 'actions',
- )
- default_columns = (
- 'pk', 'created', 'created_by', 'assigned_object_type', 'assigned_object', 'kind', 'comments'
- )
|