{% extends "base.html" %} {% block title %}Users · IP TM Manager{% endblock %} {% block body %}
Manage who can access the system. Admins can change everything; viewers can browse and search only.
| Username | Role | Status | Last 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 %} |