summaryrefslogtreecommitdiff
path: root/templates/apps/name/acls.html
blob: 5b9142974b101ceb6c70737d719245c1f9e802df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "edit.html" %}
{% load permdisplay %}
{% block beforeform %}
<h1>Permissions on {{name}}</h1>
<table style="margin-bottom: 20px;">
{% for ace in acl %}
<tr>
   <td>{{ace.dst|acldstdisplay}}</td>
   <td>{{ace.data|permdisplay}}</td>
   <td><a href="/namelink/{{ace.id}}/remove"><span class="ui-icon ui-icon-trash"></span></td>
</tr>
{% endfor %}
</table>
{% endblock %}