{% extends "global/Page.html" %} {% load otree static %} {% block title %} Practice Game 1 - Page 2 of 4 {% endblock %} {% block content %}
{% if player.id_in_group == 1 %}
For the practice game, you are RED player
{% else %}
For the practice game, you are BLUE player
{% endif %}

The screen below displays the situation at round 1 for the RED player. The RED player is told that it is his/her move, and is given a description of the choices available (TAKE/PASS) as well as the amount contained in each pile.

The Large Pile is {{ C.LARGE_PILE }} and the Small Pile is {{ C.SMALL_PILE }}. If the RED player decides to TAKE, his/her payoff will be {{ C.LARGE_PILE }} and his/her opponent's payoff will be {{ C.SMALL_PILE }}. If the RED player decides to PASS, both the Large Pile and the Small Pile will be doubled, and it will be BLUE player's turn to move.


RED player's screen

Your Move

You are RED player

The Large Pile is now: {{ C.LARGE_PILE }}

The Small Pile is now: {{ C.SMALL_PILE }}


Do you want to take the Large Pile?

{% if player.id_in_group == 1 %}

{% else %}
{% endif %}

At round 1, BLUE players will see a waiting page, as below. The BLUE player is told that it is his/her opponent's move. Once the opponent has taken his/her decision, it will be BLUE player's turn to move.


BLUE player's screen
Please wait

Waiting for the other participant.



Will all the RED players now choose PASS by selecting the proper button. Then, select NEXT.
BLUE players, please select NEXT.

{% endblock %} {% block scripts %} {% if player.id_in_group == 1 %} {% endif %} {% endblock %}