1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

53 lines
1.5 KiB
Python
Raw Normal View History

2016-03-01 11:23:03 -05:00
import django_tables2 as tables
from utilities.tables import BaseTable, TagColumn, ToggleColumn
2016-05-16 12:07:12 -04:00
from .models import SecretRole, Secret
2016-07-28 15:04:27 -04:00
SECRETROLE_ACTIONS = """
<a href="{% url 'secrets:secretrole_changelog' slug=record.slug %}" class="btn btn-default btn-xs" title="Change log">
<i class="fa fa-history"></i>
</a>
2016-05-18 16:35:35 -04:00
{% if perms.secrets.change_secretrole %}
<a href="{% url 'secrets:secretrole_edit' slug=record.slug %}?return_url={{ request.path }}" 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
#
class SecretRoleTable(BaseTable):
pk = ToggleColumn()
name = tables.LinkColumn()
2020-04-29 11:32:53 -04:00
secret_count = tables.Column(
verbose_name='Secrets'
)
2017-05-24 11:33:11 -04:00
actions = tables.TemplateColumn(
2020-04-29 11:32:53 -04:00
template_code=SECRETROLE_ACTIONS,
attrs={'td': {'class': 'text-right noprint'}},
verbose_name=''
2017-05-24 11:33:11 -04:00
)
2016-05-16 12:07:12 -04:00
class Meta(BaseTable.Meta):
2016-05-16 12:07:12 -04:00
model = SecretRole
2020-04-29 11:32:53 -04:00
fields = ('pk', 'name', 'secret_count', 'description', 'slug', 'users', 'groups', 'actions')
default_columns = ('pk', 'name', 'secret_count', 'description', 'actions')
2016-03-01 11:23:03 -05:00
#
# Secrets
#
class SecretTable(BaseTable):
pk = ToggleColumn()
device = tables.LinkColumn()
tags = TagColumn(
url_name='secrets:secret_list'
)
2016-03-01 11:23:03 -05:00
class Meta(BaseTable.Meta):
2016-03-01 11:23:03 -05:00
model = Secret
fields = ('pk', 'device', 'role', 'name', 'last_updated', 'hash', 'tags')
2020-04-29 11:32:53 -04:00
default_columns = ('pk', 'device', 'role', 'name', 'last_updated')