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

{% if player.option_choice_1 == False %} You chose not to gamble in Stage 1. {% endif %} {% if player.option_choice_1%} You chose to gamble in Stage 1 {% endif %} {% if player.option_choice_2%} and in Stage 2.
You gambled between {{ player.min_g2}} and {{ player.max_g2}} and the outcome of the lottery was:
[{{ player.min_g2}} , {{ player.max_g2}}]

{{ player.w2 }}

{% endif %} {% if player.option_choice_2 == False %} but you did not gamble in Stage 2. {% endif %}

The total earnings for this round is {{ player.final }}

{% next_button %} {% endblock %}