{% extends "base.html" %} {% load humanize %} {% block title %}
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 }}) |
Change | State | Client Address | Client Name | Client Version | {% for history in session_properties %}
---|---|---|---|---|
{{ history.t_change }} ({{ history.t_change | naturaltime }}) | {{ history.state }} | {{ history.client_address }} | {{ history.client_name }} | {{ history.client_version }} |
Created | Sent | Method | Subject | Body | {% for notification in session_notifications %}|
---|---|---|---|---|---|
{{ notification.t_created | naturaltime }} | {% if not notification.t_sent %}Never | {% else %}{{ notification.t_sent | naturaltime }} | {% endif %}{{ notification.method }} | {{ notification.subject }} | {{ notification.body }} |