{% extends "global/Page.html" %} {% load otree %} {% block title %} Choice situation {{ player.round_number }} of {{ Constants.num_rounds }} {% endblock %} {% block content %}

In choice situation {{ current_round }}, you {% if player.current_price > 0 %} pay a price of {{ player.current_price | to0 }} {{ Constants.currency }}, if you choose an option yourself. {% elif player.current_price < 0 %} receive a bonus of {{ bonus | to0}} {{ Constants.currency }}, if you choose an option yourself. {% elif price == 0 %}

Don't pay anything and choose an option yourself
or
Don't pay anything and the other participant chooses an option for you.
{% endif %}


You



You choose an option yourself and {% if player.current_price > 0 %}
pay a price of {{ player.current_price | to0 }} {{ Constants.currency }}. {% elif player.current_price < 0 %}
receive a bonus of {{ bonus | to0 }} {{ Constants.currency }}. {% endif %}



The participant type 3 chooses an option for you
{% if player.current_price > 0 %} and you don't pay a price. {% elif player.current_price < 0 %} and you don't receive a bonus. {% endif %}


As a reminder, the choice is between these two options:


Option A
Option B
Participant 3 gets {{ player.optionA_high | to0 }} {{ Constants.currency }}

Participant 4 gets {{ player.optionA_low | to0 }} {{ Constants.currency }}
Participant 3 gets {{ player.optionB_high | to0 }} {{ Constants.currency }}

Participant 4 gets {{ player.optionB_low | to0 }} {{ Constants.currency }}
{% endblock %}