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

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

Approved assignments

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

Rejected assignments

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

No workers have submitted yet.

{% 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 %}