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

44 lines
1.2 KiB
Python
Raw Normal View History

2016-03-01 11:23:03 -05:00
import django_tables2 as tables
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 = """
<a href="{% url 'secrets:secretrole_changelog' slug=record.slug %}" class="btn btn-default btn-xs" title="Changelog">
<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()
2016-05-16 12:07:12 -04:00
secret_count = tables.Column(verbose_name='Secrets')
2017-05-24 11:33:11 -04:00
actions = tables.TemplateColumn(
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
fields = ('pk', 'name', 'secret_count', 'description', 'slug', 'actions')
2016-03-01 11:23:03 -05:00
#
# Secrets
#
class SecretTable(BaseTable):
pk = ToggleColumn()
device = tables.LinkColumn()
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')