mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
95 lines
2.9 KiB
Python
95 lines
2.9 KiB
Python
from __future__ import unicode_literals
|
|
|
|
import django_tables2 as tables
|
|
from taggit.models import Tag
|
|
|
|
from utilities.tables import BaseTable, BooleanColumn, ToggleColumn
|
|
from .models import ConfigContext, ObjectChange
|
|
|
|
TAG_ACTIONS = """
|
|
{% if perms.taggit.change_tag %}
|
|
<a href="{% url 'extras:tag_edit' slug=record.slug %}" class="btn btn-xs btn-warning"><i class="glyphicon glyphicon-pencil" aria-hidden="true"></i></a>
|
|
{% endif %}
|
|
{% if perms.taggit.delete_tag %}
|
|
<a href="{% url 'extras:tag_delete' slug=record.slug %}" class="btn btn-xs btn-danger"><i class="glyphicon glyphicon-trash" aria-hidden="true"></i></a>
|
|
{% endif %}
|
|
"""
|
|
|
|
CONFIGCONTEXT_ACTIONS = """
|
|
{% if perms.extras.change_configcontext %}
|
|
<a href="{% url 'extras:configcontext_edit' pk=record.pk %}" class="btn btn-xs btn-warning"><i class="glyphicon glyphicon-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="glyphicon glyphicon-trash" aria-hidden="true"></i></a>
|
|
{% endif %}
|
|
"""
|
|
|
|
OBJECTCHANGE_ACTION = """
|
|
{% if record.action == 1 %}
|
|
<span class="label label-success">Created</span>
|
|
{% elif record.action == 2 %}
|
|
<span class="label label-primary">Updated</span>
|
|
{% elif record.action == 3 %}
|
|
<span class="label label-danger">Deleted</span>
|
|
{% endif %}
|
|
"""
|
|
|
|
OBJECTCHANGE_OBJECT = """
|
|
{% if record.action != 3 and record.changed_object.get_absolute_url %}
|
|
<a href="{{ record.changed_object.get_absolute_url }}">{{ record.object_repr }}</a>
|
|
{% else %}
|
|
{{ record.object_repr }}
|
|
{% endif %}
|
|
"""
|
|
|
|
|
|
class TagTable(BaseTable):
|
|
pk = ToggleColumn()
|
|
actions = tables.TemplateColumn(
|
|
template_code=TAG_ACTIONS,
|
|
attrs={'td': {'class': 'text-right'}},
|
|
verbose_name=''
|
|
)
|
|
|
|
class Meta(BaseTable.Meta):
|
|
model = Tag
|
|
fields = ('pk', 'name', 'weight')
|
|
|
|
|
|
class ConfigContextTable(BaseTable):
|
|
pk = ToggleColumn()
|
|
name = tables.LinkColumn()
|
|
is_active = BooleanColumn(
|
|
verbose_name='Active'
|
|
)
|
|
actions = tables.TemplateColumn(
|
|
template_code=CONFIGCONTEXT_ACTIONS,
|
|
attrs={'td': {'class': 'text-right'}},
|
|
verbose_name=''
|
|
)
|
|
|
|
class Meta(BaseTable.Meta):
|
|
model = ConfigContext
|
|
fields = ('pk', 'name', 'weight', 'is_active', 'description', 'actions')
|
|
|
|
|
|
class ObjectChangeTable(BaseTable):
|
|
time = tables.LinkColumn()
|
|
action = tables.TemplateColumn(
|
|
template_code=OBJECTCHANGE_ACTION
|
|
)
|
|
changed_object_type = tables.Column(
|
|
verbose_name='Type'
|
|
)
|
|
object_repr = tables.TemplateColumn(
|
|
template_code=OBJECTCHANGE_OBJECT,
|
|
verbose_name='Object'
|
|
)
|
|
request_id = tables.Column(
|
|
verbose_name='Request ID'
|
|
)
|
|
|
|
class Meta(BaseTable.Meta):
|
|
model = ObjectChange
|
|
fields = ('time', 'user_name', 'action', 'changed_object_type', 'object_repr', 'request_id')
|