{% extends "global/Page.html" %} {% load otree static %} {% block title %} Page title {% endblock %} {% block content %} {% if player.gambled == True %} {% if random_number > gamble_chance %}

You gambled and won, so you keep your {{endowment}}.

{% else %}

You gambled and lost, so you receive 0 this round.

{% endif %} {% else %}

You chose to keep your {{sure_amount}}.

{% endif %}

Your total payoff for this round is {{payoff}}. Your cumulative payoff is {{cumulative_payoff}}.

{% next_button %} {% endblock %}