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

You choose {{ player.decision_taken }}.
{% if player.decision_taken == 'Take the Risk' %} {% if player.amount_won_in_round < 15.0 %} In this round, the realization of the random number is {{ player.random_number_generated }}, which is less than the Probability of Loss.

You have incurred a loss.
Therefore the amount you win in this round is ${{ player.amount_won_in_round }}
{% else %} In this round, the realization of the random number is {{ player.random_number_generated }}, which is larger than the Probability of Loss.

You did not incur any loss.
Therefore the amount you win in this round is ${{ player.amount_won_in_round }}
{% endif %} {% else %} {% if player.random_number_generated > group.loss_probability %} Therefore the amount you win in this round is ${{ player.amount_won_in_round }}
In this round, the realization of the random number is {{ player.random_number_generated }}, which is larger than the Probability of Loss.

{% else %} Therefore the amount you win in this round is ${{ player.amount_won_in_round }}
In this round, the realization of the random number is {{ player.random_number_generated }}, which is less than the Probability of Loss.

{% endif %} {% endif %}

{% next_button %} {% endblock %}