from otree.api import ( models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range, ) doc = "" class Constants(BaseConstants): name_in_url = "Task3" players_per_group = None num_rounds = 1 instructions_template = "Task3/instructions.html" class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): taskTD_choice = models.IntegerField( choices=[ [1, "Option 1"], [2, "Option 2"], ], label="Treffen Sie eine Entscheidung:", widget=widgets.RadioSelectHorizontal, )