{% extends "global/Base.html" %} {% load staticfiles otree_tags %} {% block title %} Lottery {{round }} of {{num_questions}}
{% endblock %} {% block content %}

Screen 2

Your endowment for this lottery is {{ endowment }}.

{% if round == 1 %}Auto-completion: The table auto-completes your choices so you don't have to click through all rows. You do not have to start at the top of the table. If you select Option A in any one row, we assume that you will also prefer Option A in all rows above that row. If you select Option B in any one row, we assume that you will also prefer Option B in all rows below that row.
{% endif %}
{% for counter, amount in player.right_side_amounts1 %} {% if counter == 1 %} {% if type == 'list' %} {% elif type == 'rocl' %} {% endif %} {% else %} {% endif %} {% endfor %}
Option A Option B
{% 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 }}% :   sGet  $ {{ sum2 | abs }}
{% endfor %}
         With certainty:   Get  $ {{ amount | abs }}  
         With certainty:   Get  $ {{ amount | abs }}  
{{ form.errors }}
{% endblock %} {% block scripts %} {% endblock %}