{% extends "base.html" %} {% block title %}User Management — Supavision{% endblock %} {% block content %}
| Name | Role | Status | Last Login | Actions | |
|---|---|---|---|---|---|
| {{ user.email }} | {{ user.name }} | {{ user.role }} | {% if user.is_active %} Active {% else %} Inactive {% endif %} | {% if user.last_login_at %} {{ user.last_login_at }} {% else %} Never {% endif %} |
No users yet. Create one above or run supavision create-admin.
Login attempts, session events, and account changes.
{% if audit_log %}| Event | IP | Detail | Time | |
|---|---|---|---|---|
| {{ entry.event }} | {{ entry.email or '—' }} | {{ entry.ip or '—' }} | {{ entry.detail or '—' }} | {{ entry.created_at }} |
No auth events recorded yet.
{% endif %}