{% extends "global/Page.html" %}
{% block title %}Questionnaire 2 of 3{% endblock %}
{% block content %}
Please answer the following questions.
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.Creativity1.label }}
{{ for choice in form.Creativity1 }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Creativity1 }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Creativity2.label }}
{{ for choice in form.Creativity2 }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Creativity2 }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Creativity3.label }}
{{ for choice in form.Creativity3 }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Creativity3 }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Creativity4.label }}
{{ for choice in form.Creativity4 }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Creativity4 }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Creativity5.label }}
{{ for choice in form.Creativity5 }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Creativity5 }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Creativity6.label }}
{{ for choice in form.Creativity6 }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Creativity6 }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Creativity7.label }}
{{ for choice in form.Creativity7 }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Creativity7 }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Creativity8.label }}
{{ for choice in form.Creativity8 }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Creativity8 }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Creativity9.label }}
{{ for choice in form.Creativity9 }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Creativity9 }}
| {{ choice.label }} |
{{ endfor }}
{{ formfield 'Instrument' }}
{{ formfield 'Music_Training' }}
{{ formfield 'Music_Years' }}
{{ form.Music_Expert.label }}
{{ for choice in form.Music_Expert }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Music_Expert }}
| {{ choice.label }} |
{{ endfor }}
{% next_button %}
{% endblock %}