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 = 'BaNu_newsessions' players_per_group = None num_rounds = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): MTurkID = models.StringField(label="Please enter your MTurkID:") returning = models.BooleanField(label="Do you want to participate in the study next week?", choices=[(True, "Yes"), (False, "No")]) termin1 = models.IntegerField(label="", blank=True) termin2 = models.IntegerField(label="", blank=True) termin3 = models.IntegerField(label="", blank=True)