{% extends "otree/admin/Session.html" %} {% block internal_scripts %} {{ block.super }} {% endblock %} {% block content %} {{ block.super }}

Session

Session type {{ session.config.name }}
Session code {{ session.code }}
MTurk Hit Id {{ session.mturk_HITId }}
Experimenter name {{ session.experimenter_name|default_if_none:"" }}

Participants

{% if participants %} {% for p in participants %} {% endfor %}
Participant code Assignment Id Worker Id Participation fee (Reward)
Variable pay (Bonus)
Total pay
{{ p.code }} {{ p.mturk_assignment_id|default_if_none:"" }} {{ p.mturk_worker_id|default_if_none:"" }}
{{ participation_fee }}
{{ p.payoff_in_real_world_currency }}
{{ p.money_to_pay }}
{% else %}

You have no participants who finished the experiment.

{% endif %}
{% if participants %} {% endif %} {% include "otree/includes/messages.html" %} {% endblock %}