{% extends "global/Page.html" %} {% load otree static %} {% block title %} Task {{round}} of 14
Decision Screen (1/2)

{% endblock %} {% block content %}

There is a number X, randomly selected from the range of {{roclrangestart}} to {{roclrangeend}}.

{% for prob, sum, abssum in player.current_lottery %} With probability {{ prob }}% : {% if sum > 0 %} Get {% elif sum < 0 %} Lose {% elif sum == 0 and player.lottery_amount > 0 %} Get {% elif sum == 0 and player.lottery_amount < 0 %} Lose {% endif %} $ {{ abssum }}

{% endfor %}

Which certain {% if player.lottery_amount > 0 %} payment {% else %} loss {% endif %} is worth as much to you as this lottery?

{% if player.lottery_amount > 0 %} Getting {% else %} Losing {% endif %} $ with certainty is worth as much to me as this lottery.

{% next_button %}
{% endblock %}