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

The MTurk payments page will appear after you publish this session to MTurk.

{% else %}

Session

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

Assignments to be reviewed

{% for p in participants_not_reviewed %} {% endfor %}
Participant code Assignment Id Worker Id Participation fee (Reward) Variable pay (Bonus) Total pay Select
{{ 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.payoff_plus_participation_fee }}
{% endif %} {% if participants_approved %}

Approved assignments

{% for p in participants_approved %} {% 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.payoff_plus_participation_fee }}
{% endif %} {% if participants_rejected %}

Rejected assignments

{% for p in participants_rejected %} {% 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.payoff_plus_participation_fee }}
{% endif %} {% if not participants_not_reviewed and not participants_approved and not participants_rejected %}

You have no participants who finished the experiment.

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