{% 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_1 == True and player.option_choice_2 != True %} but not in Stage 2.{% endif %} {% if not player.option_choice_1 and not player.option_choice_2 %} nor in Stage 2.{% endif %} {% if not player.option_choice_1 and player.option_choice_2 %} but gambled in Stage 2.{% endif %} {% if player.option_choice_1 and player.option_choice_2 %} and in Stage 2.{% endif %} {% if player.option_choice_2%}
You gambled between ${{ player.min_g2}}0 and ${{ player.max_g2}}0 and the outcome of the lottery was:

[${{ player.min_g2}}0 , ${{ player.max_g2}}0] {% if player.w2 < player.w0 %}

${{ player.w2 }}0

{% elif player.w2 > player.w0 %}

${{ player.w2 }}0

{% else %}

${{ player.w2 }}0

{% endif %} {% endif %}
{% if player.option_choice_2 == False %}
You kept the certain amount which was: {% if player.outcome1 < player.w0 %}

${{ player.outcome1 }}0

{% elif player.outcome1 > player.w0 %}

${{ player.outcome1 }}0

{% else %}

${{ player.outcome1 }}0

{% endif %} {% endif %}

The final payoff for this round is ${{ player.final }}0

{% next_button %} {% endblock %}