from otree.api import ( models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, ) author = 'Karthik' doc = """ Questionnaire for panas and chat """ class Constants(BaseConstants): name_in_url = 'questionnaire1' players_per_group = None num_rounds = 1 chat_instruction_template = 'QuestionnaireWithChat/ChatInstruction.html' class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): distressed = models.PositiveIntegerField(verbose_name='1. Distressed', choices=[[1, 'Very Slightly or Not at All'], [2, 'A Little'], [3, 'Moderately'], [4, 'Quite a Bit'], [5, 'Extremely']], widget=widgets.RadioSelectHorizontal()) excited = models.PositiveIntegerField(verbose_name='2. Excited', choices=[[1, 'Very Slightly or Not at All'], [2, 'A Little'], [3, 'Moderately'], [4, 'Quite a Bit'], [5, 'Extremely']], widget=widgets.RadioSelectHorizontal()) upset = models.PositiveIntegerField(verbose_name='3. Upset', choices=[[1, 'Very Slightly or Not at All'], [2, 'A Little'], [3, 'Moderately'], [4, 'Quite a Bit'], [5, 'Extremely']], widget=widgets.RadioSelectHorizontal()) scared = models.PositiveIntegerField(verbose_name='4. Scared', choices=[[1, 'Very Slightly or Not at All'], [2, 'A Little'], [3, 'Moderately'], [4, 'Quite a Bit'], [5, 'Extremely']], widget=widgets.RadioSelectHorizontal()) enthusiastic = models.PositiveIntegerField(verbose_name='5. Enthusiastic', choices=[[1, 'Very Slightly or Not at All'], [2, 'A Little'], [3, 'Moderately'], [4, 'Quite a Bit'], [5, 'Extremely']], widget=widgets.RadioSelectHorizontal()) alert = models.PositiveIntegerField(verbose_name='6. Alert', choices=[[1, 'Very Slightly or Not at All'], [2, 'A Little'], [3, 'Moderately'], [4, 'Quite a Bit'], [5, 'Extremely']], widget=widgets.RadioSelectHorizontal()) inspired = models.PositiveIntegerField(verbose_name='7. Inspired', choices=[[1, 'Very Slightly or Not at All'], [2, 'A Little'], [3, 'Moderately'], [4, 'Quite a Bit'], [5, 'Extremely']], widget=widgets.RadioSelectHorizontal()) nervous = models.PositiveIntegerField(verbose_name='8. Nervous', choices=[[1, 'Very Slightly or Not at All'], [2, 'A Little'], [3, 'Moderately'], [4, 'Quite a Bit'], [5, 'Extremely']], widget=widgets.RadioSelectHorizontal()) determined = models.PositiveIntegerField(verbose_name='9. Determined', choices=[[1, 'Very Slightly or Not at All'], [2, 'A Little'], [3, 'Moderately'], [4, 'Quite a Bit'], [5, 'Extremely']], widget=widgets.RadioSelectHorizontal()) afraid = models.PositiveIntegerField(verbose_name='10. Afraid', choices=[[1, 'Very Slightly or Not at All'], [2, 'A Little'], [3, 'Moderately'], [4, 'Quite a Bit'], [5, 'Extremely']], widget=widgets.RadioSelectHorizontal()) competent = models.PositiveIntegerField(choices=[[1, 'Very Incompetent'], [2, 'Incompetent'], [3, 'Slightly Incompetent'], [4, 'Neutral'], [5, 'Slightly Competent'], [6, 'Competent'], [7, 'Very Competent']], widget=widgets.RadioSelectHorizontal()) ignorant = models.PositiveIntegerField(choices=[[1, 'Very Ignorant'], [2, 'Ignorant'], [3, 'Slightly Ignorant'], [4, 'Neutral'], [5, 'Slightly Knowledgeable'], [6, 'Knowledgeable'], [7, 'Very Knowledgeable']], widget=widgets.RadioSelectHorizontal()) responsible = models.PositiveIntegerField(choices=[[1, 'Very Irresponsible'], [2, 'Irresponsible'], [3, 'Slightly Irresponsible'], [4, 'Neutral'], [5, 'Slightly Responsible'], [6, 'Responsible'], [7, 'Very Responsible']], widget=widgets.RadioSelectHorizontal()) intelligent = models.PositiveIntegerField(choices=[[1, 'Very Unintelligent'], [2, 'Unintelligent'], [3, 'Slightly Unintelligent'], [4, 'Neutral'], [5, 'Slightly Intelligent'], [6, 'Intelligent'], [7, 'Very Intelligent']], widget=widgets.RadioSelectHorizontal()) sensible = models.PositiveIntegerField(choices=[[1, 'Very Foolish'], [2, 'Foolish'], [3, 'Slightly Foolish'], [4, 'Neutral'], [5, 'Slightly Sensible'], [6, 'Sensible'], [7, 'Very Sensible']], widget=widgets.RadioSelectHorizontal()) closeness = models.PositiveIntegerField(min=1, max=7)