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

Sessions

{% for session in object_list %} {% endfor %}
UID Machine User Session Age Client IP State State Age
{{ session.uid }} {{ session.machine.hostname_short }} {{ session.user.email }} {{ session.t_start | naturaltime | cut:" ago" }} {{ session.client_address }} {{ session.state_symbolic }} {{ session.t_change | naturaltime | cut:" ago" }}
{% endblock content %}