{% extends 'settings/master.twig' %} {% from 'macros.twig' import pagination %} {% set spagination = pagination(sessions_count, sessions_take, sessions_offset, '?m=sessions', 'settings__') %} {% block settings_content %}
Sessions

These are the active logins to your account, clicking the Kill button will force a logout on that session. Your current login is highlighted with a darker purple so you don't accidentally force yourself to logout.

{{ spagination }} {% for session in user_sessions %}
IP
{{ session.session_ip_decoded }} {% if session.session_country != 'XX' %}
{% endif %}
Created
Expires
{% if session.user_agent|length > 0 %}
User Agent
{{ session.user_agent }}
{% endif %}
{% endfor %} {{ spagination }}
{% endblock %}