diff options
| author | Leif Johansson <leifj@sunet.se> | 2010-12-03 23:46:14 +0100 |
|---|---|---|
| committer | Leif Johansson <leifj@sunet.se> | 2010-12-03 23:46:14 +0100 |
| commit | c66fb1445796f8bf5508773d4487e428aabcdaf4 (patch) | |
| tree | 2106845aaa4ffb03d04e3e91930e510f42eacacc /templates | |
| parent | fc10f1fcfdff57a9250ef18daf761d8784be92da (diff) | |
moved settings
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/apps/name/acls.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/apps/name/acls.html b/templates/apps/name/acls.html new file mode 100644 index 0000000..89bbdc2 --- /dev/null +++ b/templates/apps/name/acls.html @@ -0,0 +1,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 %}
\ No newline at end of file |
