{% block title %}
Questionnaire 4
{% endblock %}
{% block content %}
{{ if player.fourth == 3 }}
Situation 1: Suppose that Individual A has been endowed with 10 tokens
| |
Very socially inappropriate |
Somewhat socially inappropriate |
Somewhat socially appropriate |
Very socially appropriate |
| and contributed 0 tokens. |
{% for choice in form.s_10_0 %}
{% if forloop.counter <= 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% for choice in form.s_10_0 %}
{% if forloop.counter > 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
| and contributed 5 tokens |
{% for choice in form.s_10_5 %}
{% if forloop.counter <= 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% for choice in form.s_10_5 %}
{% if forloop.counter > 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
| and contributed 10 tokens |
{% for choice in form.s_10_10 %}
{% if forloop.counter <= 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% for choice in form.s_10_10 %}
{% if forloop.counter > 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
Situation 2: Suppose that Individual A has been endowed with 30 tokens
| |
Very socially inappropriate |
Somewhat socially inappropriate |
Somewhat socially appropriate |
Very socially appropriate |
| and contributed 0 tokens. |
{% for choice in form.s_30_0 %}
{% if forloop.counter <= 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% for choice in form.s_30_0 %}
{% if forloop.counter > 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
| and contributed 5 tokens |
{% for choice in form.s_30_5 %}
{% if forloop.counter <= 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% for choice in form.s_30_5 %}
{% if forloop.counter > 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
| and contributed 10 tokens |
{% for choice in form.s_30_10 %}
{% if forloop.counter <= 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% for choice in form.s_30_10 %}
{% if forloop.counter > 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
| and contributed 15 tokens. |
{% for choice in form.s_30_15 %}
{% if forloop.counter <= 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% for choice in form.s_30_15 %}
{% if forloop.counter > 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
| and contributed 20 tokens |
{% for choice in form.s_30_20 %}
{% if forloop.counter <= 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% for choice in form.s_30_20 %}
{% if forloop.counter > 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
| and contributed 25 tokens |
{% for choice in form.s_30_25 %}
{% if forloop.counter <= 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% for choice in form.s_30_25 %}
{% if forloop.counter > 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
| and contributed 30 tokens |
{% for choice in form.s_30_30 %}
{% if forloop.counter <= 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{% for choice in form.s_30_30 %}
{% if forloop.counter > 4 %}
| {{ choice }} |
{% endif %}
{% endfor %}
{{ endif }}
{{ next_button }}
{% endblock %}