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 = 'goodbye' players_per_group = None num_rounds = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): # technical issues technical_issues = models.BooleanField( label="Did you encounter any technical difficulties while answering these questions?", choices=[(True, "Yes, there were some technical issues."), (False, "No, there were no technical issues.")], widget=widgets.RadioSelect() ) comments = models.LongStringField(label="If you have any comments or questions about any of the activities or questions, " "please let us know below.", blank=True)