{% extends "global/Page.html" %} {% load otree static %} {% block title %}Part 3 Instructions{% endblock %} {% block content %}

In this part, you will make {{ Constants.num_choices }} choices between Option A and Option B.

{% for f, px, py, payoffA_high, payoffA_low, payoffB_high, payoffB_low, a_sure, b_sure, choice in choices %} {% endfor %}
Option A Option B
{% if a_sure %} {{ payoffA_high | c }} for sure {% else %} {{ px }}% chance of {{ payoffA_high | c }}
{{ py }}% chance of {{ payoffA_low | c }} {% endif %}
{% if b_sure %} {{ payoffB_high | c }} {% else %} {{ px }}% chance of {{ payoffB_high | c }}
{{ py }}% chance of {{ payoffB_low | c }} {% endif %}

Click the button below to begin making your choices.

{% endblock %}