{% load otree static %} {% block content %}

Feedback Repetition:

Please, again, repeat the feedback you just received

Of the 3 randomly selected participants from the group ...

{% if player.feedback_order == 0 %}

{% formfield player.ConfirmNegFeedback label="How many need to solve fewer additional tasks than you: " %}

{%formfield player.ConfirmPosFeedback label="How many need to solve more additional tasks than you:"%}

{% else%}

{%formfield player.ConfirmPosFeedback label="How many need to solve more additional tasks than you:"%}

{% formfield player.ConfirmNegFeedback label="How many need to solve fewer additional tasks than you: " %}

{% endif %}

{% if player.feedback_order == 0 %}

Number of participants that need to solve fewer additional tasks: {{player.NegativeFeedback}}

Number of participants that need to solve more additional tasks: {{player.PositiveFeedback}}

{% else %}

Number of participants that need to solve more additional tasks: {{player.PositiveFeedback}}

Number of participants that need to solve fewer additional tasks: {{player.NegativeFeedback}}

{% endif %}

{% next_button %}

{% endblock %}