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 = 'sotusotu' players_per_group = None num_rounds = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): price1 = models.IntegerField( label='(1) 価格を記入してください。', min=100, max=1000 ) price2 = models.IntegerField( label='(2)価格を記入してください。', min=100, max=1000 ) price3 = models.IntegerField( label='(3) 価格を記入してください。', min=100, max=1000 ) price4 = models.IntegerField( label='(4)価格を記入してください。', min=100, max=1000 ) price5 = models.IntegerField( label='(5)価格を記入してください。', min=0, max=950 ) price6 = models.IntegerField( label='(6)価格を記入してください。', min=100, max=950 )