| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- import django_tables2 as tables
- from django.conf import settings
- from utilities.tables import (
- BaseTable, BooleanColumn, ButtonsColumn, ChoiceFieldColumn, ColorColumn, ContentTypeColumn, ToggleColumn,
- )
- from .models import ConfigContext, JournalEntry, ObjectChange, Tag, TaggedItem
- CONFIGCONTEXT_ACTIONS = """
- {% if perms.extras.change_configcontext %}
- <a href="{% url 'extras:configcontext_edit' pk=record.pk %}" class="btn btn-xs btn-warning"><i class="mdi mdi-pencil" aria-hidden="true"></i></a>
- {% endif %}
- {% if perms.extras.delete_configcontext %}
- <a href="{% url 'extras:configcontext_delete' pk=record.pk %}" class="btn btn-xs btn-danger"><i class="mdi mdi-trash-can-outline" aria-hidden="true"></i></a>
- {% endif %}
- """
- OBJECTCHANGE_OBJECT = """
- {% if record.changed_object.get_absolute_url %}
- <a href="{{ record.changed_object.get_absolute_url }}">{{ record.object_repr }}</a>
- {% else %}
- {{ record.object_repr }}
- {% endif %}
- """
- OBJECTCHANGE_REQUEST_ID = """
- <a href="{% url 'extras:objectchange_list' %}?request_id={{ value }}">{{ value }}</a>
- """
- class TagTable(BaseTable):
- pk = ToggleColumn()
- name = tables.Column(
- linkify=True
- )
- color = ColorColumn()
- actions = ButtonsColumn(Tag)
- class Meta(BaseTable.Meta):
- model = Tag
- fields = ('pk', 'name', 'items', 'slug', 'color', 'description', 'actions')
- class TaggedItemTable(BaseTable):
- content_type = ContentTypeColumn(
- verbose_name='Type'
- )
- content_object = tables.Column(
- linkify=True,
- orderable=False,
- verbose_name='Object'
- )
- class Meta(BaseTable.Meta):
- model = TaggedItem
- fields = ('content_type', 'content_object')
- class ConfigContextTable(BaseTable):
- pk = ToggleColumn()
- name = tables.Column(
- linkify=True
- )
- is_active = BooleanColumn(
- verbose_name='Active'
- )
- class Meta(BaseTable.Meta):
- model = ConfigContext
- fields = (
- 'pk', 'name', 'weight', 'is_active', 'description', 'regions', 'sites', 'roles', 'platforms',
- 'cluster_groups', 'clusters', 'tenant_groups', 'tenants',
- )
- default_columns = ('pk', 'name', 'weight', 'is_active', 'description')
- class ObjectChangeTable(BaseTable):
- time = tables.DateTimeColumn(
- linkify=True,
- format=settings.SHORT_DATETIME_FORMAT
- )
- action = ChoiceFieldColumn()
- changed_object_type = ContentTypeColumn(
- verbose_name='Type'
- )
- object_repr = tables.TemplateColumn(
- template_code=OBJECTCHANGE_OBJECT,
- verbose_name='Object'
- )
- request_id = tables.TemplateColumn(
- template_code=OBJECTCHANGE_REQUEST_ID,
- verbose_name='Request ID'
- )
- class Meta(BaseTable.Meta):
- model = ObjectChange
- fields = ('time', 'user_name', 'action', 'changed_object_type', 'object_repr', 'request_id')
- class ObjectJournalTable(BaseTable):
- """
- Used for displaying a set of JournalEntries within the context of a single object.
- """
- created = tables.DateTimeColumn(
- linkify=True,
- format=settings.SHORT_DATETIME_FORMAT
- )
- kind = ChoiceFieldColumn()
- comments = tables.TemplateColumn(
- template_code='{% load helpers %}{{ value|render_markdown|truncatewords_html:50 }}'
- )
- actions = ButtonsColumn(
- model=JournalEntry
- )
- class Meta(BaseTable.Meta):
- model = JournalEntry
- fields = ('created', 'created_by', 'kind', 'comments', 'actions')
- class JournalEntryTable(ObjectJournalTable):
- pk = ToggleColumn()
- assigned_object_type = ContentTypeColumn(
- verbose_name='Object type'
- )
- assigned_object = tables.Column(
- linkify=True,
- orderable=False,
- verbose_name='Object'
- )
- class Meta(BaseTable.Meta):
- model = JournalEntry
- fields = (
- 'pk', 'created', 'created_by', 'assigned_object_type', 'assigned_object', 'kind', 'comments', 'actions'
- )
|