from otree.api import * c = Currency doc = """ Your app description """ class Constants(BaseConstants): name_in_url = 'Booi' players_per_group = None num_rounds = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): estuary = models.StringField( label='Name of the estuary', choices=['Sundays estuary', 'Swartkops estuary'], widget=widgets.RadioSelect, ) # PAGES class MyPage(Page): form_model = 'player' form_fields = [''] page_sequence = [MyPage]