from otree.api import ( models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range, ) author = 'jNM²' doc = """ Your app description """ class Constants(BaseConstants): name_in_url = 'Questionnaire' players_per_group = 2 num_rounds = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): question1 = models.StringField( choices=[['1', '1'], ['2', '2'], ['3', '3'], ['4', '4'], ['5', '5'], ['6', '6'], ['7', '7'], ['8', '8'], ['9', '9'], ['10', '10']], label="From 1 to 10 how do you describe your level of risk taking (1 for risk aversion and 10 for risk seeking)", widget=widgets.RadioSelectHorizontal ) question2 = models.StringField( choices=[['1', '1'], ['2', '2'], ['3', '3'], ['4', '4'], ['5', '5'], ['6', '6'], ['7', '7'], ['8', '8'], ['9', '9'], ['10', '10']], label="From 1 to 10 how do you describe you intention for lying? (1 for lying aversion and 10 for lying seeking)", widget=widgets.RadioSelectHorizontal, ) question3 = models.StringField( choices=[['1', '1'], ['2', '2'], ['3', '3'], ['4', '4'], ['5', '5'], ['6', '6'], ['7', '7'], ['8', '8'], ['9', '9'], ['10', '10']], label="From 1 to 10 how do you measure the necessity to use a special coordination mechanism to achieve truthful information sharing within a company. (1 for not necessary at all and 10 for completely necessary)", widget=widgets.RadioSelectHorizontal, )