2017-05-24 11:33:11 -04:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2016-03-01 11:23:03 -05:00
|
|
|
import django_tables2 as tables
|
|
|
|
|
2017-07-12 16:42:45 -04:00
|
|
|
from utilities.tables import BaseTable, ToggleColumn
|
2016-05-16 12:07:12 -04:00
|
|
|
from .models import SecretRole, Secret
|
|
|
|
|
2016-07-28 15:04:27 -04:00
|
|
|
SECRETROLE_ACTIONS = """
|
2016-05-18 16:35:35 -04:00
|
|
|
{% if perms.secrets.change_secretrole %}
|
2016-07-28 15:04:27 -04:00
|
|
|
<a href="{% url 'secrets:secretrole_edit' slug=record.slug %}" class="btn btn-xs btn-warning"><i class="glyphicon glyphicon-pencil" aria-hidden="true"></i></a>
|
2016-05-18 16:35:35 -04:00
|
|
|
{% endif %}
|
2016-05-16 12:07:12 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Secret roles
|
|
|
|
#
|
|
|
|
|
2016-06-20 16:34:19 -04:00
|
|
|
class SecretRoleTable(BaseTable):
|
2016-06-01 13:30:33 -04:00
|
|
|
pk = ToggleColumn()
|
2016-05-16 12:07:12 -04:00
|
|
|
name = tables.LinkColumn(verbose_name='Name')
|
|
|
|
secret_count = tables.Column(verbose_name='Secrets')
|
|
|
|
slug = tables.Column(verbose_name='Slug')
|
2017-05-24 11:33:11 -04:00
|
|
|
actions = tables.TemplateColumn(
|
|
|
|
template_code=SECRETROLE_ACTIONS, attrs={'td': {'class': 'text-right'}}, verbose_name=''
|
|
|
|
)
|
2016-05-16 12:07:12 -04:00
|
|
|
|
2016-06-20 16:34:19 -04:00
|
|
|
class Meta(BaseTable.Meta):
|
2016-05-16 12:07:12 -04:00
|
|
|
model = SecretRole
|
2016-07-28 15:04:27 -04:00
|
|
|
fields = ('pk', 'name', 'secret_count', 'slug', 'actions')
|
2016-03-01 11:23:03 -05:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Secrets
|
|
|
|
#
|
|
|
|
|
2016-06-20 16:34:19 -04:00
|
|
|
class SecretTable(BaseTable):
|
2016-06-01 13:30:33 -04:00
|
|
|
pk = ToggleColumn()
|
2017-03-29 16:05:23 -04:00
|
|
|
device = tables.LinkColumn()
|
2016-03-01 11:23:03 -05:00
|
|
|
|
2016-06-20 16:34:19 -04:00
|
|
|
class Meta(BaseTable.Meta):
|
2016-03-01 11:23:03 -05:00
|
|
|
model = Secret
|
2016-06-22 11:03:49 -04:00
|
|
|
fields = ('pk', 'device', 'role', 'name', 'last_updated')
|