{% extends "layout.html" %}{% block content %}

Users

Accounts are read-only here. Create, change, disable, enable, or sign out users with the daily-epub users CLI on the server.

{% for user in users %}{% endfor %}{% if users.is_empty() %}{% endif %}
UsernameRoleStatusCreatedLast loginOpen sessions
{{ user.username }} {{ user.role }} {% if user.disabled %}disabled{% else %}enabled{% endif %} {{ user.created }} {{ user.last_login }} {{ user.open_sessions }}
No users. Bootstrap an admin with daily-epub users add <username> --admin.
{% endblock %}