2021-02-09 14:06:34 +01:00
|
|
|
{% extends "admin.html" %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block head2 %}
|
|
|
|
<script src="/static/sorttable.js"></script>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block admin %}
|
2021-02-09 14:19:48 +01:00
|
|
|
<div class="scrollable">
|
|
|
|
<table class="sortable">
|
2021-02-09 14:06:34 +01:00
|
|
|
|
2021-02-09 14:19:48 +01:00
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
Kürzel
|
|
|
|
</th>
|
|
|
|
<th>
|
2021-02-10 09:09:17 +01:00
|
|
|
Emailadresse
|
2021-02-09 14:19:48 +01:00
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
Benutzername
|
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
{% for user in users %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="/admin/view/profile/{{user.id}}"><span>{{user.id}}</span>
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<a href="/admin/view/profile/{{user.id}}">{{ user.email }}
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
<td>
|
2021-02-09 14:06:34 +01:00
|
|
|
|
2021-02-09 14:19:48 +01:00
|
|
|
<a href="/admin/view/profile/{{user.id}}"><small>{{ user.username }}</small>
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
2021-02-09 14:06:34 +01:00
|
|
|
{% endblock %}
|