from otree.api import * c = cu doc = '' class C(BaseConstants): NAME_IN_URL = 'TAM_AlgorithmicTools' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): Usefulness_1 = models.IntegerField(choices=[[1, '1'], [2, '2'], [3, '3'], [4, '4'], [5, '5']], label='1. AI/algorithmic tools help making better decisions.', widget=widgets.RadioSelectHorizontal) Usefulness_2 = models.IntegerField(choices=[[1, '1'], [2, '2'], [3, '3'], [4, '4'], [5, '5']], label='2. AI/algorithmic tools help accomplishing tasks more quickly.', widget=widgets.RadioSelectHorizontal) Usefulness_3 = models.IntegerField(choices=[[1, '1'], [2, '2'], [3, '3'], [4, '4'], [5, '5']], label='3. Using AI/algorithmic tools can make my life easier.', widget=widgets.RadioSelectHorizontal) Usefulness_4 = models.IntegerField(choices=[[1, '1'], [2, '2'], [3, '3'], [4, '4'], [5, '5']], label='4. Overall, I find AI/algorithmic tools useful.', widget=widgets.RadioSelectHorizontal) EaseUse_1 = models.IntegerField(choices=[[1, '1'], [2, '2'], [3, '3'], [4, '4'], [5, '5']], label='5. The use of AI/algorithmic tools requires a lot of mental effort.', widget=widgets.RadioSelectHorizontal) EaseUse_2 = models.IntegerField(choices=[[1, '1'], [2, '2'], [3, '3'], [4, '4'], [5, '5']], label='6. The use of AI/algorithmic tools is usually simple and clear.', widget=widgets.RadioSelectHorizontal) EaseUse_3 = models.IntegerField(choices=[[1, '1'], [2, '2'], [3, '3'], [4, '4'], [5, '5']], label='7. AI/Algorithmic tools provide helpful guidance in performing tasks.', widget=widgets.RadioSelectHorizontal) EaseUse_4 = models.IntegerField(choices=[[1, '1'], [2, '2'], [3, '3'], [4, '4'], [5, '5']], label='Overall, I find AI/algorithmic tools easy to use.', widget=widgets.RadioSelectHorizontal) Attitude_1 = models.IntegerField(choices=[[1, '1'], [2, '2'], [3, '3'], [4, '4'], [5, '5']], label='9. I am positive towards AI/algorithmic tools. ', widget=widgets.RadioSelectHorizontal) Attitude_2 = models.IntegerField(choices=[[1, '1'], [2, '2'], [3, '3'], [4, '4'], [5, '5']], label='10. Using AI/algorithmic tools is usually a good idea.', widget=widgets.RadioSelectHorizontal) Use_Intention = models.IntegerField(choices=[[1, '1'], [2, '2'], [3, '3'], [4, '4'], [5, '5']], label='11. I would use AI/algorithmic tools when making decisions.', widget=widgets.RadioSelectHorizontal) class TAM_AI(Page): form_model = 'player' form_fields = ['Usefulness_1', 'Usefulness_2', 'Usefulness_3', 'Usefulness_4', 'EaseUse_1', 'EaseUse_2', 'EaseUse_3', 'EaseUse_4', 'Attitude_1', 'Attitude_2', 'Use_Intention'] page_sequence = [TAM_AI]