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

My sessions

{% if sessions|length > 1 %}
{% endif %}

One row per active sign-in. The row marked (this session) is the cookie that brought this request.

{% for s in sessions %} {% endfor %}
Last seen IP User agent Expires
{{ s.last_seen_at.strftime('%Y-%m-%d %H:%M') }} {% if s.id == current_sid %} (this session){% endif %} {{ s.ip or '(unknown)' }} {{ (s.user_agent or '(unknown)')[:80] }} {{ s.expires_at.strftime('%Y-%m-%d') }}
{% endblock %}