{% extends "base.html" %} {% block title %}Profile — Supavision{% endblock %} {% block content %}
Manage your account settings and active sessions.
These are the devices currently signed in to your account.
{% if sessions %}| IP Address | Browser | Created | Last Active | |
|---|---|---|---|---|
| {{ s.ip_address or '—' }} | {{ s.user_agent[:50] if s.user_agent else '—' }}{% if s.user_agent and s.user_agent|length > 50 %}…{% endif %} | {{ s.created_at }} | {{ s.last_activity_at }} | {% if s.id == current_session_id %} Current {% else %} {% endif %} |
No active sessions found.
{% endif %}