from otree.api import *
BLANK = False
def feedback_survey_overall(constraints=False):
q1 = models.IntegerField(label= "Overall story quality (out of 10) " ,min=0, max=10, blank=BLANK)
q2 = models.IntegerField(label= "Creativity of the story (out of 10) " ,min=0, max=10, blank=BLANK)
q3 = models.IntegerField(label= "Coherence of the story (out of 10) " ,min=0, max=10, blank=BLANK)
q4 = models.IntegerField(label= "Coordination between the two players (out of 10)" ,min=0, max=10, blank=BLANK)
return [q1, q2, q3, q4]