{% extends "otree/BaseAdmin.html" %} {% block title %} Information about time tracking (for pages using tracking_time 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
{{ 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.early_exits|date:'Y-m-d H:i:s.u'}} {{ s.timediff}} {{ s.exittype}}
{% else %} No information about tracking time available {% endif %} {% endblock %} {% block internal_styles %} {{ block.super }} {% endblock %}