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 = 'big5' players_per_group = None num_rounds = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): q1 = models.IntegerField(choices=[[1,'Disagree Strongly'], [2,'Disagree a little'], [3,'Neither agree nor disagree'], [4,'Agree a little'], [5,'Agree Strongly']], label = '... is reserved.', widget=widgets.RadioSelectHorizontal) q2 = models.IntegerField(choices=[[1,'Disagree Strongly'], [2,'Disagree a little'], [3,'Neither agree nor disagree'], [4,'Agree a little'], [5,'Agree Strongly']], label = '... is generally trusting.', widget=widgets.RadioSelectHorizontal) q3 = models.IntegerField(choices=[[1,'Disagree Strongly'], [2,'Disagree a little'], [3,'Neither agree nor disagree'], [4,'Agree a little'], [5,'Agree Strongly']], label = '... tends to be lazy.', widget=widgets.RadioSelectHorizontal) q4 = models.IntegerField(choices=[[1,'Disagree Strongly'], [2,'Disagree a little'], [3,'Neither agree nor disagree'], [4,'Agree a little'], [5,'Agree Strongly']], label = '... is relaxed, handles stress well.', widget=widgets.RadioSelectHorizontal) q5 = models.IntegerField(choices=[[1,'Disagree Strongly'], [2,'Disagree a little'], [3,'Neither agree nor disagree'], [4,'Agree a little'], [5,'Agree Strongly']], label = '... has few artistic interests.', widget=widgets.RadioSelectHorizontal) q6 = models.IntegerField(choices=[[1,'Disagree Strongly'], [2,'Disagree a little'], [3,'Neither agree nor disagree'], [4,'Agree a little'], [5,'Agree Strongly']], label = '... is outgoing, sociable.', widget=widgets.RadioSelectHorizontal) q7 = models.IntegerField(choices=[[1,'Disagree Strongly'], [2,'Disagree a little'], [3,'Neither agree nor disagree'], [4,'Agree a little'], [5,'Agree Strongly']], label = '... tends to find fault with others.', widget=widgets.RadioSelectHorizontal) q8 = models.IntegerField(choices=[[1,'Disagree Strongly'], [2,'Disagree a little'], [3,'Neither agree nor disagree'], [4,'Agree a little'], [5,'Agree Strongly']], label = '... does a thorough job.', widget=widgets.RadioSelectHorizontal) q9 = models.IntegerField(choices=[[1,'Disagree Strongly'], [2,'Disagree a little'], [3,'Neither agree nor disagree'], [4,'Agree a little'], [5,'Agree Strongly']], label = '... gets nervous easily.', widget=widgets.RadioSelectHorizontal) q10 = models.IntegerField(choices=[[1,'Disagree Strongly'], [2,'Disagree a little'], [3,'Neither agree nor disagree'], [4,'Agree a little'], [5,'Agree Strongly']], label = '... has an active imagination.', widget=widgets.RadioSelectHorizontal)