blob: 2913d603bd21ae1b53fe1a025e01e14ec82c9239 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{% extends "layout.html" %}
{% block head%}
{{super()}}
{% endblock %}
{% block content %}
<div class="container">
<h1>Registered users</h1>
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for user in users|sort(attribute="firstname") %}
<tr>
<td>{{ loop.index }}</td>
<td><a href="/admin/user/{{ user.id }}/">{{ user.firstname }}</a></td>
<td>{{ user.lastname }}</td>
<td>{{ user.email }}</td>
<td>
<a href="/admin/user/{{ user.id }}/"><i class="glyphicon glyphicon-user" title="View this user"></i></a>
<a href="/admin/edit_user/{{ user.id }}/"><i class="glyphicon glyphicon-edit" title="Edit this user"></i></a>
{% if user.apikey == "" %}
<a href="/admin/enable_user/{{ user.id }}/"><i class="glyphicon glyphicon-ok-circle" title="Enable API key of this user"></i></a>
{% else %}
<a href="/admin/disable_user/{{ user.id }}/"><i class="glyphicon glyphicon-ban-circle" title="Disable API key of this user"></i></a>
{% endif %}
<a href="/admin/delete_user/{{ user.id }}/"><i class="glyphicon glyphicon-remove" title="Delete this user"></i></a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<br />
<a href="/admin/create_user/" class="btn btn-default">Add a new user</a>
<br /><br />
<p class="text-info">As an administrator you are not listed in this table.</p>
</div>
{% endblock %}
|