from otree.api import * doc = """ Your app description """ class C(BaseConstants): NAME_IN_URL = 'survey_TYT2' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): Gender = models.IntegerField( label="あなたの性別を教えてください.", choices=[[1, '男性'], [2, '女性'], [3, 'その他']], ) Age = models.IntegerField( label="あなたの年齢を教えてください.", choices=[[1, '20歳未満'], [2, '20-29歳'], [3, '30-39歳'], [4, '40-49歳'], [5, '50-59歳'], [6, '60-69歳'], [7, '70-79歳'],[8, '80-89歳'],[9, '90-99歳'],[10, '100歳以上']], ) # PAGES class MyPage(Page): form_model = 'player' form_fields = ['Gender', 'Age'] class Results(Page): pass page_sequence = [MyPage, Results]