{% extends "global/Page.html" %} {% load otree static %} {% block title %} Unconditional decision {% 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.

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

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

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

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

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

{% endif %} {% formfields %} {% next_button %} {% endblock %}