{% extends "global/Page.html" %} {% load otree %} {% block title %} Decision {{round }} of {{num_questions}}
{% endblock %} {% block content %}
{% if type == 'list' %} {% elif type == 'rocl' %} {% endif %}
{% for prob, sum in player.current_lottery %} With probability {{ prob }}% : {% if sum >= 0 %}   Get  {% elif sum < 0 %}   Lose  {% endif %} $ {{ sum | abs }}
{% endfor %}

We roll a fair four-sided dice with numbers 20, 40, 60, 80

{% for roll, prob1, sum1, prob2, sum2 in player.current_lottery %} If dice comes up {{ roll }}:
  • With probability {{ prob1 }}% :   Get  $ {{ sum1 | abs }}
  • With probability {{ prob2 }}% :    Get  $ {{ sum2 | abs }}
{% endfor %}

Please use the slider below to guess the average confidence stated by all other study participants in Part 2 for this specific lottery. {# {%if round == 1 %}

#} {# You can allocate 100 points to one or more dollar amounts to indicate how likely you think it is that this dollar amount corresponds to your valuation of the lottery.

{%endif%}#}


not confident at all
fully confident

{{form.errors}}
{% endblock %} {% block styles %} {% endblock %} {% block scripts %} {% endblock %}