{% extends "base.html" %} {% load humanize %} {% block title %} {{ request.site.name }} Session Details {% endblock title %} {% block content %}

Session Details

UID Machine User Session Start Current State Last Change
{{ session.uid }} {{ session.machine }} {{ session.user }} {{ session.t_start | naturaltime }} ({{ session.t_start }}) {{ session.cur_state }} {{ session_properties.last.t_change | naturaltime }} ({{ session_properties.last.t_change }})

Session History

{% for history in session_properties %} {% endfor %}
Change State Client Address Client Name Client Version
{{ history.t_change }} ({{ history.t_change | naturaltime }}) {{ history.state }} {{ history.client_address }} {{ history.client_name }} {{ history.client_version }}
{% if session_notifications %}

Session Notifications

{% for notification in session_notifications %} {% if not notification.t_sent %} {% else %} {% endif %} {% endfor %}
Created Sent Method Subject Body
{{ notification.t_created | naturaltime }} Never {{ notification.t_sent | naturaltime }}{{ notification.method }} {{ notification.subject }} {{ notification.body }}
{% endif %}
Actions
{% if not session_properties.last.state == "disconnected" %} {% else %} {% endif %}
{% endblock content %}