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 = 'kakunin' players_per_group = 2 num_rounds = 1 # """Amount allocated to each player""" class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): test_1 = models.BooleanField( label="解答", choices =[ [False,"〇"], [True,"×"], [False,"わからない"], ] ) test_2 = models.BooleanField( label="解答", choices =[ [True,"〇"], [False,"×"], [False,"わからない"], ] ) test_3 = models.BooleanField( label="解答", choices =[ [False,"10"], [False,"20"], [True,"30"], [False,"45"], [False,"40"], [False,"50"], [False,"わからない"] ] ) test_4 = models.BooleanField( label="解答", choices =[ [True,"〇"], [False,"×"], ] ) test_5 = models.BooleanField( label="解答", choices =[ [True, "〇"], [False, "×"], ] ) test_6 = models.BooleanField( label="解答", choices=[ [True, "出来るだけあなたの会社の利益を大きくすること"], [False, "早く終わらせること"], [False, "適当に数字を選ぶこと"], [False, "わからない"], ] ) test_7 = models.BooleanField( label="解答", choices=[ [True, "1200"], [False, "1000"], [False, "1400"], [False, "2100"], [False, "わからない"], ] ) test_8 = models.BooleanField( label="解答", choices=[ [False, "1200"], [False, "1500"], [True, "1400"], [False, "2100"], [False, "わからない"], ] )