{% extends "global/Page.html" %} {% load otree %} {% block title %} Part 3 - Feedback {% endblock %} {% block content %}
{% block styles %} {% endblock %}
{{ if player.feedback_interval == 5 }}

Based on your decisions and the random draws by the computer, you will now receive information about the average performance of those participants in Rank 1-20 (top performance).

On average, these participants solved {{ Constants.feedback_Int5}} puzzles correctly in Part 1.

{{ endif }} {{ if player.feedback_interval == 4 }}

Based on your decisions and the random draws by the computer, you will now receive information about the average performance of those participants in Rank 21-40 (above average).

On average, these participants solved {{ Constants.feedback_Int4}} puzzles correctly in Part 1.

{{ endif }} {{ if player.feedback_interval == 3 }}

Based on your decisions and the random draws by the computer, you will now receive information about the average performance of those participants in Rank 41-60 (average performance).

On average, these participants solved {{ Constants.feedback_Int3}} puzzles correctly in Part 1.

{{ endif }} {{ if player.feedback_interval == 2 }}

Based on your decisions and the random draws by the computer, you will now receive information about the average performance of those participants in Rank 61-80 (below average).

On average, these participants solved {{ Constants.feedback_Int2}} puzzles correctly in Part 1.

{{ endif }} {{ if player.feedback_interval == 1 }}

Based on your decisions and the random draws by the computer, you will now receive information about the average performance of those participants in Rank 81-100 (bottom performance).

On average, these participants solved {{ Constants.feedback_Int1}} puzzles correctly in Part 1.

{{ endif }} {{ if player.feedback_interval == 0 }}

Based on your decisions and the random draws by the computer, you would not be receiving any information about the performance of other participants.

{{ endif }}

Please click "Next" to proceed.



{{ endblock }}