{% extends "layout.twig" %} {% set errorMessages = { 'self_demote': 'You cannot demote yourself — ask another admin.', 'last_admin': 'Cannot demote the last remaining admin.', 'not_found': 'User not found.', 'db_error': 'Could not save. Try again.', } %} {% set flashMessages = { 'promoted': 'Admin granted.', 'demoted': 'Admin revoked.', 'noop': 'Nothing changed.', } %} {% block content %}

Users

Everyone who has ever signed in. Toggle admin status here; you cannot demote yourself or the last admin. Users are never deleted — inactive accounts simply stop signing in.

{% if error and errorMessages[error] is defined %}
{{ errorMessages[error] }}
{% endif %} {% if flash and flashMessages[flash] is defined %}
{{ flashMessages[flash] }}
{% endif %}
{% if users is empty %}
No users yet.
{% else %} {% for u in users %} {% set isSelf = u.id == currentUser.id %} {% endfor %}
Email Display name Last login (UTC) Admin  
{{ u.email }} {% if isSelf %} you {% endif %} {{ u.displayName }} {% if u.lastLoginAt is not null %}{{ u.lastLoginAt }}{% else %}{% endif %}
{% endif %}
{% endblock %}