import django_tables2 as tables from django.conf import settings from utilities.tables import BaseTable, BooleanColumn, ButtonsColumn, ChoiceFieldColumn, ColorColumn, ToggleColumn from .models import ConfigContext, JournalEntry, ObjectChange, Tag, TaggedItem TAGGED_ITEM = """ {% if value.get_absolute_url %} {{ value }} {% else %} {{ value }} {% endif %} """ CONFIGCONTEXT_ACTIONS = """ {% if perms.extras.change_configcontext %} {% endif %} {% if perms.extras.delete_configcontext %} {% endif %} """ OBJECTCHANGE_OBJECT = """ {% if record.changed_object.get_absolute_url %} {{ record.object_repr }} {% else %} {{ record.object_repr }} {% endif %} """ OBJECTCHANGE_REQUEST_ID = """ {{ value }} """ class TagTable(BaseTable): pk = ToggleColumn() color = ColorColumn() actions = ButtonsColumn(Tag) class Meta(BaseTable.Meta): model = Tag fields = ('pk', 'name', 'items', 'slug', 'color', 'description', 'actions') class TaggedItemTable(BaseTable): content_object = tables.TemplateColumn( template_code=TAGGED_ITEM, orderable=False, verbose_name='Object' ) content_type = tables.Column( verbose_name='Type' ) class Meta(BaseTable.Meta): model = TaggedItem fields = ('content_object', 'content_type') class ConfigContextTable(BaseTable): pk = ToggleColumn() name = tables.LinkColumn() 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 = tables.Column( 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 JournalEntryTable(BaseTable): pk = ToggleColumn() created = tables.DateTimeColumn( format=settings.SHORT_DATETIME_FORMAT ) assigned_object_type = tables.Column( verbose_name='Object type' ) assigned_object = tables.Column( linkify=True, orderable=False, verbose_name='Object' ) kind = ChoiceFieldColumn() actions = ButtonsColumn( model=JournalEntry, buttons=('edit', 'delete') ) class Meta(BaseTable.Meta): model = JournalEntry fields = ( 'pk', 'created', 'created_by', 'assigned_object_type', 'assigned_object', 'kind', 'comments', 'actions' ) class ObjectJournalTable(BaseTable): """ Used for displaying a set of JournalEntries within the context of a single object. """ created = tables.DateTimeColumn( format=settings.SHORT_DATETIME_FORMAT ) kind = ChoiceFieldColumn() actions = ButtonsColumn( model=JournalEntry, buttons=('edit', 'delete') ) class Meta(BaseTable.Meta): model = JournalEntry fields = ('created', 'created_by', 'kind', 'comments', 'actions')