{% load static %} Stats

Session List

Browser Sessions


From:      To:

Times are UTC

    {% for b in browser_sessions.all %}
  • {{ b.start_time }}
  • {% endfor %}

Pages Visited


{% for b in browser_sessions.all %}
    {% for page in b.pagesession_set.all %}
  • {{ page.page }}
  • {% endfor %}
{% endfor %}

Page Actions


{% for b in browser_sessions.all %} {% for page in b.pagesession_set.all %}
    {% for action in page.pageevent_set.all %}
  • {{ action.type }}: {{ action.info }}
  • {% endfor %}
{% endfor %} {% endfor %}