{% 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.k2_min}}0 and ${{ player.k2_max}}0 and you {% if player.K2 < 0 %} lost:

${{ player.K2 }}0

{% elif player.K2 > 0 %} gained:

${{ player.K2 }}0

{% endif %} Your payoff is thus ${{ player.outcome1}}0 + {% if player.K2 < 0 %} ${{ player.K2 }}0 {% elif player.K2 > 0 %} ${{ player.K2 }}0 {% endif %} = ${{ player.w2 }}0 {% endif %} {% if player.option_choice_2 == False %}
You kept the certain amount which was:

${{ player.outcome1 }}0

{% endif %}

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

{% next_button %} {% endblock %}