{% extends "base.html" %} {% load static %} {% block title %}Session Management - {{ block.super }}{% endblock %} {% block css %} {% endblock %} {% block content %}

Session Management

Monitor and manage user sessions across the system

{{ sessions.count }}
Total Sessions
{{ sessions|length }}
Active Sessions
0
Suspicious
{{ sessions|regroup:"user"|length }}
Unique Users
{% if sessions %} {% for session in sessions %}
{% if session.device_type == 'DESKTOP' %} {% elif session.device_type == 'MOBILE' %} {% elif session.device_type == 'TABLET' %} {% else %} {% endif %}
{{ session.user.get_full_name }} {% if session.is_current_session %} Current {% endif %}
{{ session.ip_address }} {{ session.location|default:"Unknown location" }} {{ session.browser_name }} {{ session.browser_version }}
Started: {{ session.created_at|date:"M d, Y H:i" }} Last activity: {{ session.last_activity_at|date:"M d, Y H:i" }} {% if session.expires_at %} Expires: {{ session.expires_at|date:"M d, Y H:i" }} {% endif %}
{% if session.user_agent %}
{{ session.user_agent|truncatechars:80 }}
{% endif %}
{% if session.is_active and not session.is_current_session %} {% endif %}
{% endfor %} {% else %}
No sessions found

No sessions match your current filters.

{% endif %}
{% if is_paginated %} {% endif %}
{% endblock %} {% block js %} {% endblock %}