]> git.ipfire.org Git - ipfire.org.git/blob - templates/admin-accounts.html
Move everything to the root of the repository.
[ipfire.org.git] / templates / admin-accounts.html
1 {% extends "admin-base.html" %}
2
3 {% block content %}
4 <div id="post">
5 <h3>{{ _("Account Administrator") }}</h3>
6
7 <p>
8 <a href="/accounts/create">{{ _("Create new account") }}</a>
9 </p>
10
11 <table>
12 <tr>
13 <th>{{ _("Name (Nickname)") }}</th>
14 <th>&nbsp;</th>
15 </tr>
16 {% for account in accounts %}
17 <tr>
18 <td>{{ account.cn }} ({{ account.uid }})</td>
19 <td>
20 <a href="/accounts/edit/{{ account.uid }}">{{ _("Edit") }}</a>
21 <a href="/accounts/delete/{{ account.uid }}">{{ _("Delete") }}</a>
22 </td>
23 </tr>
24 {% end %}
25 </table>
26 </div>
27 {% end %}