{% extends "otree_tools/BaseToolsAdmin.html" %} {% load static %} {% 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.player.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 }} {{ s.get_exit_type_display }} {{ s.enter.get_wait_for_images_display }}
{% 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_styles %} {{ block.super }} {% endblock %} {% block internal_scripts %} {{ block.super }} {% endblock %}