{% extends "otree/Session.html" %} {% block content %} {{ 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

{% with reviewable=True %} {% with participants=participants_not_reviewed %} {% include 'otree/includes/mturk_payment_table.html' %} {% endwith %} {% endwith %}
{% endif %} {% if participants_approved %}

Approved assignments

{% with reviewable=False %} {% with participants=participants_approved %} {% include 'otree/includes/mturk_payment_table.html' %} {% endwith %} {% endwith %} {% endif %} {% if participants_rejected %}

Rejected assignments

{% with reviewable=False %} {% with participants=participants_rejected %} {% include 'otree/includes/mturk_payment_table.html' %} {% endwith %} {% endwith %} {% endif %} {% if not participants_not_reviewed and not participants_approved and not participants_rejected %}

No workers have submitted yet. Reload this page to check for updates.

{% endif %} {% if auto_rejects %}
oTree automatically rejected the following assignments because the participants submitted without even opening the link to the study: {{ auto_rejects }}
{% endif %}
{% endif %}
{% include "otree/includes/messages.html" %} {% endblock %}