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

Session

Session type {{ session.session_type.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:"" }}
{{ fixed_pay }}
{{ p.payoff_from_subsessions_in_real_world_currency }}
{{ p.total_pay_display }}
{% else %}

You have no participants who finished the experiment.

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