from otree.api import ( models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range, ) author = 'David Lucius' doc = """ created by: David Lucius (david.lucius@posteo.de) """ class Constants(BaseConstants): name_in_url = 'TWO_STORIES' players_per_group = None num_rounds = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): # Screen: WorkersStory WORKERS_OVERALL_EVALUATION = models.IntegerField( choices=[ [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'] ], widget=widgets.RadioSelectHorizontal ) WORKERS_EVALUATION_POS_ARG_01 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) WORKERS_EVALUATION_POS_ARG_02 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) WORKERS_EVALUATION_POS_ARG_03 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) WORKERS_EVALUATION_POS_ARG_04 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) WORKERS_EVALUATION_POS_ARG_05 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) WORKERS_EVALUATION_POS_ARG_06 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) WORKERS_EVALUATION_NEG_ARG_01 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) WORKERS_EVALUATION_NEG_ARG_02 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) WORKERS_EVALUATION_NEG_ARG_03 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) WORKERS_EVALUATION_NEG_ARG_04 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) WORKERS_EVALUATION_NEG_ARG_05 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) WORKERS_EVALUATION_NEG_ARG_06 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) # Screen: DoctorsStory DOCTORS_OVERALL_EVALUATION = models.IntegerField( choices=[ [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'] ], widget=widgets.RadioSelectHorizontal ) DOCTORS_EVALUATION_POS_ARG_01 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) DOCTORS_EVALUATION_POS_ARG_02 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) DOCTORS_EVALUATION_POS_ARG_03 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) DOCTORS_EVALUATION_POS_ARG_04 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) DOCTORS_EVALUATION_POS_ARG_05 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) DOCTORS_EVALUATION_POS_ARG_06 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) DOCTORS_EVALUATION_NEG_ARG_01 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) DOCTORS_EVALUATION_NEG_ARG_02 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) DOCTORS_EVALUATION_NEG_ARG_03 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) DOCTORS_EVALUATION_NEG_ARG_04 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) DOCTORS_EVALUATION_NEG_ARG_05 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal ) DOCTORS_EVALUATION_NEG_ARG_06 = models.IntegerField( choices=[ [-4, '-4'], [-3, '-3'], [-2, '-2'], [-1, '-1'], [0, '0'], [1, '1'], [2, '2'], [3, '3'], [4, '4'] ], widget=widgets.RadioSelectHorizontal )