from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Page1(Page): form_model = 'player' form_fields = ['answer1'] class Page2(Page): pass class Page3(Page): form_model = 'player' form_fields = ['img1', 'rich1', 'tasty1', 'memory1', 'healthy1', 'myText1'] class Page4(Page): form_model = 'player' form_fields = ['img2', 'rich2', 'tasty2', 'memory2', 'healthy2', 'myText2'] class Page5(Page): form_model = 'player' form_fields = ['img3', 'rich3', 'tasty3', 'memory3', 'healthy3', 'myText3'] class Page6(Page): form_model = 'player' form_fields = ['img4', 'rich4', 'tasty4', 'memory4', 'healthy4', 'myText4'] class Page7(Page): form_model = 'player' form_fields = ['img5', 'rich5', 'tasty5', 'memory5', 'healthy5', 'myText5'] class Page8(Page): form_model = 'player' form_fields = ['img6', 'rich6', 'tasty6', 'memory6', 'healthy6', 'myText6'] class Page9(Page): form_model = 'player' form_fields = ['img7', 'rich7', 'tasty7', 'memory7', 'healthy7', 'myText7'] class Page10(Page): form_model = 'player' form_fields = ['img8', 'rich8', 'tasty8', 'memory8', 'healthy8', 'myText8'] class Page11(Page): form_model = 'player' form_fields = ['img9', 'rich9', 'tasty9', 'memory9', 'healthy9', 'myText9'] class Page12(Page): form_model = 'player' form_fields = ['number1', 'number2', 'number3', 'number4', 'number5'] class Page13(Page): form_model = 'player' form_fields = ['age', 'gender', 'diet', 'pasta', 'cake', 'choco', 'shoudou'] class Page14(Page): pass page_sequence = [Page1, Page2, Page3, Page4, Page5, Page6, Page7, Page8, Page9, Page10, Page11, Page12, Page13, Page14]