{% extends "global/Page.html" %}
{{ block title }}
Survey 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.Wish.label }}
{{ for choice in form.Wish }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Wish }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Magic.label }}
{{ for choice in form.Magic }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Magic }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Anticipatory.label }}
{{ for choice in form.Anticipatory }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Anticipatory }}
| {{ choice.label }} |
{{ endfor }}
{{ form.No_reason.label }}
{{ for choice in form.No_reason }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.No_reason }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Think_bad.label }}
{{ for choice in form.Think_bad }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Think_bad }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Attention.label }}
{{ for choice in form.Attention }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Attention }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Perform.label }}
{{ for choice in form.Perform }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Perform }}
| {{ choice.label }} |
{{ endfor }}
Imagine the following hypothetical scenario. The computer have flipped the coin ten times.
One head side up, you will get an additional $0.01 ,
two heads side up, you will get an additional $0.02 ,
...
{{ formfield 'Coin'}}
Imagine the following hypothetical scenario. You participate in the verbal task you have just done and you are paid for your performance. You have 1 minutes to solve as many matrices as you can.
Here are two salary options:
Option 1: Piece rate: you receive $0.01 for each correctly solved matrix;
Option 2: Competition: you compete against 9 other people. If your performance is in top 2 , you receive $0.15 per correctly solved matrix, otherwise you receive nothing. Your 9
opponents will be randomly selected among the other participants.
{{ formfield 'Option'}}
{{ formfield 'Help_or_hurt'}}
{{ formfield 'Try'}}
{{ formfield 'Give_up'}}
On a scale from 0 to 10, please rate the following statements:
{{ form.Bring_best.label }}
{{ for choice in form.Bring_best }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Bring_best }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Competitive.label }}
{{ for choice in form.Competitive }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Competitive }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Competitive_evn.label }}
{{ for choice in form.Competitive_evn }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Competitive_evn }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Competitive_expose.label }}
{{ for choice in form.Competitive_expose }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Competitive_expose }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Will_compete.label }}
{{ for choice in form.Will_compete }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Will_compete }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Will_risk.label }}
{{ for choice in form.Will_risk }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Will_risk }}
| {{ choice.label }} |
{{ endfor }}
{{ form.Compete_importance.label }}
{{ for choice in form.Compete_importance }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.Compete_importance }}
| {{ choice.label }} |
{{ endfor }}
{{ form.classify_verbal.label }}
{{ for choice in form.classify_verbal }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.classify_verbal }}
| {{ choice.label }} |
{{ endfor }}
{{ form.classify_math.label }}
{{ for choice in form.classify_math }}
| {{ choice }} |
{{ endfor }}
{{ for choice in form.classify_math }}
| {{ choice.label }} |
{{ endfor }}
{{ formfield 'Good_at_verbal'}}
{{ formfield 'Good_at_math'}}
{{ formfield 'How_change_verbal'}}
{{ formfield 'How_change_math'}}
{{ formfield 'any_unclear'}}
{% next_button %}
{% endblock %}