{% extends "otree_tools/BaseToolsAdmin.html" %} {% load static %} {% block title %} Focused/unfocused time spent per page

({% verbatim %}{% tracking_time %}{% endverbatim %} tag)

{% endblock %} {% block content %} {% if focusevents %} {% for s in focusevents %} {% endfor %}
Session code Participant code App name Round number Page name Focused time Unfocused time
{{ s.participant__session__code }} {{ s.participant__code }} {{ s.app_name }} {{ s.round_number }} {{ s.page_name }} {{ s.focused_time|default_if_none:0 }} {{ s.unfocused_time|default_if_none:0 }}
{% include 'otree_tools/includes/pagination_footer.html' %} {% else %} No information about focus tracking is available. If you want to track time spent per page, insert {% verbatim %} {% tracking_time %} {% endverbatim %} to a corresponding template. {% endif %} {% endblock %} {% block internal_scripts %} {{ block.super }} {% endblock %}