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,"0"], [False,"1"], [True,"10"], [False,"5"], [False,"4"], [False,"3"], [False,"8"], [False,"わからない"] ] ) test_4 = models.BooleanField( label="解答", choices =[ [False,"〇"], [True,"×"], ] ) test_5 = models.BooleanField( label="解答", choices =[ [False,"0"], [True, "5"], [False,"3"], [False,"1"], [False,"4"], ] ) test_6 = models.BooleanField( label="解答", choices=[ [True, "15"], [False, "20"], [False, "25"], [False, "30"], [False, "わからない"], ] ) test_7 = models.BooleanField( label="解答", choices=[ [True, "0"], [False, "1"], [False, "2"], [False, "3"], [False, "4"], ] )