summaryrefslogtreecommitdiff
path: root/templates/apps/name/acls.html
blob: 89bbdc2168eb5dbb9a3767d8cad45fa0f37b85fd (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>Members of <a href="/name/id/{{ace.dst.id}}">{{ace.dst}} ({{ace.dst.short}})</a></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 %}