mirror of
https://github.com/vale981/vale981_fahrschule
synced 2025-03-04 17:31:42 -05:00
16 lines
No EOL
351 B
HTML
16 lines
No EOL
351 B
HTML
{% extends 'quizzes.html' %}
|
|
|
|
{% block main %}
|
|
|
|
{% if user.is_staff == False %}
|
|
<h1>Kein Zutrit!</h1>
|
|
{% else %}
|
|
<table border="0px">
|
|
|
|
{% for users in users %}
|
|
|
|
<tr><td align="center"><h3><a href="/quiz/aw/get/{{ users.id }}">{{ users.get_full_name }}</a></h3></td></tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endif %}
|
|
{% endblock %} |