{% extends 'layout/base.html' %} {% block title %}Активные сессии{% endblock %} {% block body %}
{% include 'admin/_flash.html' %}
Активные сессии ({{ items|length }})
{% if items|length > 1 %}
{% endif %}
{% for s in items %} {% endfor %}
СозданаАктивностьIPБраузер
{{ s.created_at.strftime('%d.%m %H:%M') }} {{ s.last_seen_at.strftime('%d.%m %H:%M') }}{% if s.token == current %} · текущая{% endif %} {{ s.ip or '—' }} {{ s.user_agent[:80] }} {% if s.token != current %}
{% endif %}
{% endblock %}