{% extends "global/Page.html" %} {% load otree static %} {% block title %} Questionnaire {% endblock %} {% block content %} In this section, we are interested in understanding your thoughts during the decision-making task.

Please indicate to what extent you agree or disagree with the following statements.

To what extent was your performance determined by... {% for field in form %} {% if forloop.counter < 5 %} {% for choice in field %} {% endfor %} {% endif %} {% endfor %}
Not at all                                               Very much
{{ field.label }}{{ choice }}

{% for field in form %} {% if forloop.counter > 4 %} {% for choice in field %} {% endfor %} {% endif %} {% endfor %}
Strongly disagree                                              Strongly Agree
{{ field.label }}{{ choice }}


{% next_button %} {% endblock %}