mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-15 07:20:17 +02:00
49 lines
1.8 KiB
HTML
49 lines
1.8 KiB
HTML
{% extends "registered/base.html" %}
|
|
{% load bootstrap %}
|
|
{% load staticfiles %}
|
|
{% load i18n %}
|
|
|
|
{% block page_title %}{{ permission.permission.codename }} - {% trans "Permissions Audit" %}{% endblock page_title %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<h1 class="page-header">{% trans "Permissions Audit" %}: {{ permission.permission.codename }}</h1>
|
|
<a href="{% url 'permissions_overview' %}" class="btn btn-default">
|
|
<i class="glyphicon glyphicon-chevron-left"></i> {% trans "Back" %}
|
|
</a>
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th class="col-md-3">
|
|
{% trans "Group" %}
|
|
</th>
|
|
<th class="col-md-3">
|
|
{% trans "User" %}
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for user in permission.users %}
|
|
<tr>
|
|
{% include 'permissions_tool/audit_row.html' with group="Permission Granted Directly (No Group)" %}
|
|
</tr>
|
|
{% endfor %}
|
|
{% for group in permission.groups %}
|
|
{% for user in group.user_set.all %}
|
|
{% include 'permissions_tool/audit_row.html' %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% for state in permission.states %}
|
|
{% for profile in state.userprofile_set.all %}
|
|
{% with profile.user as user %}
|
|
<tr>
|
|
{% include 'permissions_tool/audit_state_row.html' %}
|
|
</tr>
|
|
{% endwith %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endblock content %}
|