{% extends "global/Page.html" %} {% load otree %} {% block title %} Decision screen 2
{% endblock %} {% block content %}
{% if type == 'list' %} {% elif type == 'rocl' %} {% elif type == 'complex_amt' %} {% elif type == 'complex_prob' %} {% endif %}
{% for prob, sum, abssum in 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 %}

We randomly draw an integer number between {{ roclrangestart }} and {{ roclrangeend }}. Call this number X.

{% for prob, sum, abssum in 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 %}
{% for prob, sum, abssum in current_lottery %} With probability {{ prob }}% :
{% if not abssum == 0 %} Get {% else %} Get {% endif %} $ {{ sum }}

{% endfor %}
{% for prob, sum, abssum in 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 %}

Your choices on the previous screen indicate that you value this lottery somewhere between {% if val_low < 0 or val_low == 0 and player.lottery_amount < 0 %} losing {% else %} getting {% endif %}${{ absval_low }} and ${{ absval_up }}.

How certain are you that you value this lottery somewhere between {% if val_low < 0 or val_low == 0 and player.lottery_amount < 0 %} losing {% else %} getting {% endif %} ${{ absval_low }} and ${{ absval_up }}?
{% for x, i in radio_amounts %} {% endif %} {% endfor %}

{% if x != 1 %}
{% else %}
very uncertain
completely certain




{% endblock %} {% block scripts %} {% endblock %}