{% extends "global/Page.html" %} {% load otree %} {% block title %} Stage 1 {% endblock %} {% block content %}

You start the round with ${{ Constants.initial_amount }}0.

Choose between the two options:

Option "Safe":
Take {% if player.C0 < 0 %} ${{ player.C }}0 {% endif %} {% if player.C0 > 0 %} ${{ player.C }}0 {% endif %} with certainty and move on to Stage 2.

Option "Gamble":
Enter the lottery to draw a new amount in between {% if player.min_g1 < player.w0 %} ${{ player.min_g1 }}0 {% elif player.min_g1 > player.w0 %} ${{ player.min_g1}}0 {% else %} ${{ player.min_g1}}0 {% endif %} and {% if player.max_g1 < player.w0 %} ${{ player.max_g1 }}0 {% elif player.max_g1 > player.w0 %} ${{ player.max_g1}}0 {% else %} ${{player.max_g1}}0 {% endif %} and move on to Stage 2.

Select the Option

{% endblock %}