from otree.api import ( models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range ) author = 'Your name here' doc = """ Your app description """ class Constants(BaseConstants): name_in_url = 'mturk_test_survey' players_per_group = None num_rounds = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): instructions_clarity = models.IntegerField(blank=True, min=0, max=10, label="On the scale from 0 to 10, how clear were the instructions? " "(0 - not clear at all; 10 - extremely clear)") instructions_too_long = models.BooleanField(blank=True, label="Did you find the instructions to be unnecessarily long?") random_familiar = models.BooleanField(blank=True, label="Would you say that you have a good grasp over the " "concept of randomness and chance?") comments = models.LongStringField(blank=True, initial="", label="If you have any comments, please let us know:")