Active Sessions
{{ summary.total_active_sessions }}
Currently active
Applications
{{ summary.total_clients }}
You're using
Active Sessions
{% if active_sessions %}
{% set current_client = namespace(value='') %}
{% for session in active_sessions %}
{% if session.client_name != current_client.value %}
{% set current_client.value = session.client_name %}
{% if not loop.first %}
{% endif %}
No active sessions. Log in to an application to see sessions here.
{% endif %}