{% extends "base.html" %} {% block title %}Users · IP TM Manager{% endblock %} {% block body %}

Users

Manage who can access the system. Admins can change everything; viewers can browse and search only.

Add User

All Users

{% for u in users %} {% endfor %}
UsernameRoleStatusLast login
{{ u.username }}{% if current_user and u.id == current_user.id %} (you){% endif %} {{ u.role }} {{ 'active' if u.active else 'disabled' }} {{ u.last_login.strftime('%Y-%m-%d %H:%M') if u.last_login else '—' }} {% if not (current_user and u.id == current_user.id) %}
{% endif %}
{% endblock %}