{% extends "global/Page.html" %} {% load otree %} {% block title %}
Expected levels of Disapproval
{% endblock %} {% block content %}

Recall that you have an endowment of {% if Ana_Endowment == 30 %} 30 {% elif Ana_Endowment == 15 %} 15 {% endif %} ECUs (Click here to see how it was assigned).

For each possible contribution level below, please indicate the total disapproval points(0-20) you expect to receive from the other two players combined.

Remember: Each player can assign a minimum of 0 and a maximum of 10 disapproval points. So the total disapproval points you can receive ranges from 0 to 20.

{% if Ana_Endowment == 30 %}
0-3
4-6
7-9
10-12
13-15
16-18
19-21
22-24
25-27
28-30
{% formfield player.Ana_belief_high_3 %}
{% formfield player.Ana_belief_high_6 %}
{% formfield player.Ana_belief_high_9 %}
{% formfield player.Ana_belief_high_12 %}
{% formfield player.Ana_belief_high_15 %}
{% formfield player.Ana_belief_high_18 %}
{% formfield player.Ana_belief_high_21 %}
{% formfield player.Ana_belief_high_24 %}
{% formfield player.Ana_belief_high_27 %}
{% formfield player.Ana_belief_high_30 %}
{% elif Ana_Endowment == 15 %}
0-3
4-6
7-9
10-12
13-15
{% formfield player.Ana_belief_low_3 %}
{% formfield player.Ana_belief_low_6 %}
{% formfield player.Ana_belief_low_9 %}
{% formfield player.Ana_belief_low_12 %}
{% formfield player.Ana_belief_low_15 %}
{% endif %}
{% endblock %}