]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/admin-accounts.html
netboot: Allow booting multiple architectures
[people/shoehn/ipfire.org.git] / templates / admin-accounts.html
CommitLineData
feb02477
MT
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
940227cb
MT
11 <table>
12 <tr>
13 <th>{{ _("Name (Nickname)") }}</th>
14 <th>&nbsp;</th>
15 </tr>
feb02477 16 {% for account in accounts %}
940227cb
MT
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>
feb02477 24 {% end %}
940227cb 25 </table>
feb02477
MT
26 </div>
27{% end %}