{% block title %}
Post-Experimental Questionnaire
{% endblock %}
{% block content %}
{% for field in form %}
{% if forloop.counter <= 4 %}
{{ field.label }}
{% for choice in field %}
{{ choice }}
{% endfor %}
{% for idx in range(1, 8) %}
{{ idx }}
{% endfor %}
{% for choice in field %}
{{ choice.label }}
{% endfor %}
{% endif %}
{% endfor %}
5. Please estimate the average work level (over all periods) of the other worker in your group
I think the other worker’s average work level is {{ formfield 'otherworklevel_est' }}
6. Please estimate the average work level (over all periods) of all workers in this study
I think the average work level of all workers is {{ formfield 'allworklevel_est' }}
{% next_button %}
{% endblock %}