{% extends 'base.html' %} {% from '_partials/page_header.html' import page_header %} {% block title %}Admin ยท Users{% endblock %} {% block content %} {{ page_header('Admin', tabs=tabs, active_tab='users') }}
{{ users|length }} user{{ '' if users|length == 1 else 's' }}
| User | Role | Last login | Actions |
|---|---|---|---|
| {{ u.username }} {% if is_me %}(you){% endif %} {% if u.must_change_password %}must change pw{% endif %} | {{ u.role }} | {{ u.last_login }} |
|