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

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

{% else %}

MTurk HIT ID {{ session.mturk_HITId }}
Participation fee {{ participation_fee }}
{% if participants_not_reviewed %}
{% csrf_token %}

Participants to be reviewed

{% for p in participants_not_reviewed %} {% endfor %}
Code Assignment ID Worker ID Progress Completion code Bonus payoff Total pay Select
{{ p.code }} {{ p.mturk_assignment_id|default_if_none:"" }} {{ p.mturk_worker_id|default_if_none:"" }} {{ p.current_page_ }} {{ p.mturk_answers_formatted }} {{ 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 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 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 %}