{% extends "otree/BaseAdmin.html" %} {% block title %} Information about focus events ({% verbatim %}{% tracking_focus %}{% endverbatim %} tag) {% endblock %} {% block content %} {% if focusevents %} {% for s in focusevents %} {% endfor %}
Session code Participant code App name Round number Page name Timestamp Event type
{{ s.participant.session.code}} {{ s.participant.code}} {{ s.app_name}} {{ s.player.round_number}} {{ s.page_name }} {{ s.timestamp|date:'Y-m-d H:i:s.u'}} {{ s.event_type}}
{% else %} No information about focus events is available. If you want to track whether and when a user leaves the page, insert {% verbatim %} {% tracking_focus %} {% endverbatim %} to a corresponding template. {% endif %} {% endblock %} {% block internal_styles %} {{ block.super }} {% endblock %}