from otree.api import ( models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range, Page, WaitPage ) cu = c doc = 'Trial investment game' class Constants(BaseConstants): name_in_url = 'Trial_InvGameRESD1' players_per_group = 3 num_rounds = 1 alphatrial = 3 betatrial = 5 gammatrial = 2 tetatrial = 1 endowment = c(7) class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): CorrectorNot = models.StringField(choices=[['No problems, all answers are correct', 'No problems, all answers are correct'], ['I understood how the calculator works but I still got "Wrong" results', 'I understood how the calculator works but I still got "Wrong" results'], ['I did not understand how the calculator works', 'I did not understand how the calculator works']], label='Have you answered to all the questions?')