{% extends "admin_layout.html" %} {% block content %}

Showing sessions for {{ principal_uuid }}.

{% if sessions.is_empty() %}

No active sessions.

{% else %} {% for s in sessions %} {% endfor %}
UUIDCreatedLast usedExpiresRevoked
{{ s.uuid }} {{ s.created }} {{ s.last_used }} {{ s.expires }} {% if s.revoked %}yes{% else %}no{% endif %}
{% endif %}
{% endblock %}