{% extends "otree_tools/BaseToolsAdmin.html" %} {% load static otree_tools %} {% block title %} Time tracking info ({% verbatim %}{% tracking_time %}{% endverbatim %} tag) {% endblock %} {% block content %} {% if timestamps %} {% for s in timestamps %} {% endfor %}
Session code Participant code App name Round number Page name Entrance timestamp Exit timestamp Duration Exit type Enter:wait for images
{{ s.participant__session__code }} {{ s.participant__code }} {{ s.app_name }} {{ s.round_number }} {{ s.page_name }} {{ s.enter_timestamp|date:'Y-m-d H:i:s.u' }} {{ s.timestamp|date:'Y-m-d H:i:s.u' }} {{ s.diff|duration }} {{ s.exit_type|convert_exit }} {{ s.wait_for_images|yesno:"Yes,No" }}
{% include 'otree_tools/includes/pagination_footer.html' %} {% else %} No information about time 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 %}