{% extends "base.html" %}
{% import "_partials/modals.html" as modals %}
{% block styles %}
{{ super() }}
{% endblock %}
{% block app_content %}
Manage Users
{{ modals.confirm("delete", "Delete User", "You are about to delete the user
and all associated tasks and annotations. Are you sure?") }}
User Overview
| ID |
Username |
Email |
Confirmed? |
Introduced? |
Last Active (UTC) |
Admin? |
{% for user in users %}
| {{ user.id }} |
{{ user.username }} |
{{ user.email }} |
{% if user.is_confirmed %}Yes{% else %}No{% endif %} |
{% if user.is_introduced %}Yes{% else %}No{% endif %} |
{{ user.last_active }} |
{% if user.is_admin %}Yes{% else %}{% endif %} |
{% endfor %}
{% endblock %}
{% block scripts %}
{{ super() }}
{% endblock scripts %}