{% extends "global/Page.html" %} {% load otree static %} {% block title %} Decision making {% endblock %} {% block content %}


We will now start the actual game.


There is only one round for this game. You are matched with three other participants who have also signed up to take part in the study.

{% if player.treatment == "equalpro" %}


You have 20 tokens at your disposal.


Your task is to decide how many tokens you would like to contribute to the project.

{% formfield player.contribution2 %} {% formfield player.estimate_equal_con label="What is your estimate of the average contribution from the OTHER group members (rounded to next integer)?" %} {% elif player.treatment == "equalmain" %}


You can withdraw up to 20 tokens.


Your task is to decide how many tokens you would like to withdraw from the project.

{% formfield player.withdrawal2 %} {% formfield player.estimate_equal_with label="What is your estimate of the average withdrawal from the OTHER group members (rounded to next integer)?" %} {% elif player.treatment == "unequalpro" and player.your_type == "low" %}


You have 10 tokens at your disposal.


Your task is to decide how many tokens you would like to contribute to the project.

{% formfield player.contribution2 %} {% formfield player.estimate_other_con label="What is your estimate of the contribution of the OTHER group member who has 10 tokens?" %} {% formfield player.estimate_others_con label="What is your estimate of the average contribution of the OTHER two group members who have 30 tokens each (rounded to next integer)?" %} {% elif player.treatment == "unequalpro" and player.your_type == "high" %}


You have 30 tokens at your disposal.


Your task is to decide how many tokens you would like to contribute to the project.

{% formfield player.contribution2 %} {% formfield player.estimate_other_con label="What is your estimate of the contribution of the OTHER group member who has 30 tokens?" %} {% formfield player.estimate_others_con label="What is your estimate of the average contribution of the OTHER two group members who have 10 tokens each (rounded to next integer)?" %} {% elif player.treatment == "unequalmain" and player.your_type == "low" %}


You can withdraw up to 10 tokens.


Your task is to decide how many tokens you would like to withdraw from the project.

{% formfield player.withdrawal2 %} {% formfield player.estimate_other_with label="What is your estimate of the withdrawal of the OTHER group member who can withdraw up to 10 tokens? " %} {% formfield player.estimate_others_with label="What is your estimate of the average withdrawal of the OTHER two group members who can withdraw up to 30 tokens each (rounded to next integer)?" %} {% elif player.treatment == "unequalmain" and player.your_type == "high" %}


You can withdraw up to 30 tokens.


Your task is to decide how many tokens you would like to withdraw from the project.

{% formfield player.withdrawal2 %} {% formfield player.estimate_other_with label="What is your estimate of the withdrawal of the OTHER group member who can withdraw up to 30 tokens? " %} {% formfield player.estimate_others_with label="What is your estimate of the average withdrawal of the OTHER two group members who can withdraw up to 10 tokens each (rounded to next integer)?" %} {% endif %} {% next_button %} {% endblock %}