from otree.api import ( models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range ) doc = '' class Constants(BaseConstants): name_in_url = 'blank_app' players_per_group = None num_rounds = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): Comp = models.IntegerField(choices=[[1, '$0.20'], [2, '$0.60'], [3, "No - Alice, with the information, can't tell what outcome Bob gets"]], label='', widget=widgets.RadioSelect) Comp2 = models.IntegerField(choices=[[1, '$0.20'], [2, '$0.60'], [3, "No - Alice, with the information, can't tell what outcome Bob gets"]], label='', widget=widgets.RadioSelect)