{% 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...
| Not at all | | | | | | Very much |
{% for field in form %}
{% if forloop.counter < 5 %}
| {{ field.label }} |
{% for choice in field %}
{{ choice }} |
{% endfor %}
{% endif %}
{% endfor %}
| Strongly disagree | | | | | | Strongly Agree |
{% for field in form %}
{% if forloop.counter > 4 %}
| {{ field.label }} |
{% for choice in field %}
{{ choice }} |
{% endfor %}
{% endif %}
{% endfor %}
{% next_button %}
{% endblock %}