{% extends "admin/layout.html" %} {% block content %} {# Breadcrumb #} {# Page heading #}

Sessions

Active authenticated sessions. Revoking a session forces that device to log in again. {{ pagination.total }} session{{ 's' if pagination.total != 1 else '' }} total.

{# Flash messages #} {% if flash.get('admin_success') %}

{{ flash.admin_success }}

{% endif %} {% if flash.get('admin_error') %}

{{ flash.admin_error }}

{% endif %} {% if sessions %}
{% for sess in sessions %} {% endfor %}
User ID Guard IP Address User Agent Last Login Actions
{{ sess.user_id }} {{ sess.guard }} {{ sess.ip_address or '—' }} {{ sess._short_ua }} {{ sess._fmt_time }}
{# Revoke all for this user #}
{# Revoke this single session #}
{# Pagination #} {% if pagination.last_page > 1 %} {% endif %} {% else %}

No active sessions found.

Sessions are recorded when users log in after the user_sessions table has been created.

{% endif %} {% endblock %}