{% extends "admin/base.html" %} {% block title %}All sessions · bragi admin{% endblock %} {% block content %}

All sessions

Every active session row in the database. Use sparingly; this view is intended for incident response, not routine browsing.

{% for s, u in pairs %} {% endfor %}
User Last seen IP User agent Expires
{% if u %} {{ u.display_name }} <{{ u.email }}> {% else %} (anonymous) {% endif %} {% if s.id == current_sid %} (this session){% endif %} {{ s.last_seen_at.strftime('%Y-%m-%d %H:%M') }} {{ s.ip or '(unknown)' }} {{ (s.user_agent or '(unknown)')[:60] }} {{ s.expires_at.strftime('%Y-%m-%d') }}
{% endblock %}