from otree.api import * doc = """ Your app description """ class C(BaseConstants): NAME_IN_URL = 'simplesurvey' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): answer1 = models.IntegerField(label = '') answer2 = models.IntegerField(label = '') answer3 = models.IntegerField(label = '') # PAGES class EqProb(Page): form_model ='player' form_fields = ['answer1', 'answer2', 'answer3'] page_sequence = [EqProb]