{% extends "global/Page.html" %}
{% block title %}Questionnaire Page 1 of 3{% endblock %}
{% block content %}
This is the final part of today’s study. We will ask you some survey questions.
Please respond to all questions honestly.
There are no wrong answers, and we seek only honest responses.
Recall, you must complete all tasks and all surveys to receive a unique
completion code,
which you need to submit to the mTurk site to receive your compensation for this study
(i.e., guaranteed participation fee + bonus payment).
{{ formfield 'Math_classes' }}
{{ form.Math_performance.label }}
{{ for choice in form.Math_performance }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Math_performance }}
| {{ choice.label }} |
{{ endfor }}
{{ formfield 'Finance_classes' }}
{{ form.Finance_performance.label }}
{{ for choice in form.Finance_performance }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Finance_performance }}
| {{ choice.label }} |
{{ endfor }}
{{ formfield 'Economics_classes' }}
{{ form.Economics_performance.label }}
{{ for choice in form.Economics_performance }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Economics_performance }}
| {{ choice.label }} |
{{ endfor }}
On a scale from 1 to 7, with 1 being strongly disagree, 4 being neither agree nor disagree, and 7 being strongly agree,
please rate the following statements:
{{ form.Math1.label }}
{{ for choice in form.Math1 }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Math1 }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Math2.label }}
{{ for choice in form.Math2 }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Math2 }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Math3.label }}
{{ for choice in form.Math3 }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Math3 }}
| {{ choice.label }} |
{{ endfor }}
{% next_button %}
{% endblock %}