from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Introduction(Page): pass class MyPage(Page): form_model = 'player' form_fields = ['gender', 'age', 'nationality', 'relationship', 'living_situation'] class MyPage2(Page): form_model = 'player' form_fields = ['Q1','Q2','Q3','Q4','Q5','Q6'] class MyPage3(Page): form_model = 'player' form_fields = ['Q7','Q8','Q9','Q10','Q11','Q12','Q13'] class MyPage4(Page): form_model = 'player' form_fields = ['Q14','Q15','Q16','Q17'] class MyPage5(Page): form_model = 'player' form_fields = ['Q18', 'Q19', 'Q20'] class MyPage6(Page): form_model = 'player' form_fields = ['Q21','Q22','Q23','Q24'] class MyPage7(Page): form_model = 'player' form_fields = ['Q25','Q26','Q27','Q28','Q29',] class MyPage8(Page): form_model = 'player' form_fields = ['Q30','Q31','Q32','Q33','Q34','Q35',] class Results(Page): pass page_sequence = [Introduction, MyPage, MyPage2, MyPage3, MyPage4, MyPage5, MyPage6, MyPage7, MyPage8, Results]