{% extends "global/Page.html" %} {% load otree static %} {% block title %} Practice Game 1 - Page 4 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 %}

Since BLUE chose TAKE, the first game has ended. Again, you are notified about the decision taken in the previous round. Specifically, you are notified whether "You decided to take the Large Pile" or "Your opponent decided to take the Large Pile," depending on whether you or your opponent ended the experiment. Then, both yours and your opponent's payoff are reported on your screen.

The RED player will see the following screen. Since in previous turn the BLUE player decided to TAKE, the notification states: "Your opponent decided to take the large pile".


RED player's screen

Results

Your opponent decided to take the large pile

Your payoff is: {{ small_pile_practice_second }}

Your opponent's payoff is: {{ large_pile_practice_second }}


The BLUE player will see instead the following screen. Since in previous turn the BLUE player decided to TAKE, the notification states: "You decided to take the large pile".

BLUE player's screen

Results

You decided to take the large pile

Your payoff is: {{ large_pile_practice_second }}

Your opponent's payoff is: {{ small_pile_practice_second }}


We will now proceed to the second practice game. Here, you will see how the payoffs change if both players have selected PASS at each turn.

{% endblock %}