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

It is now BLUE player's turn

More important, this is the last turn of the game.


BLUE player's screen

Your Move

Your opponent decided to pass

The Large Pile is now: {{ large_pile_practice_last }}

The Small Pile is now: {{ small_pile_practice_last }}


Do you want to take the Large Pile?

{% if player.id_in_group == 2 %}
{% else %}
{% endif %}

As you can see, the two piles doubled again.

If the BLUE player selected TAKE, he/she would earn {{ large_pile_practice_last }}, and the RED player would earn {{ small_pile_practice_last }}

Will all BLUE players select PASS and then NEXT. RED players, please select NEXT.

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