from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Description(Page): pass class q1(Page): form_model = "player" form_fields = ['answer1'] class q2(Page): form_model = "player" form_fields = ['answer2'] class q3(Page): form_model = "player" form_fields = ['answer3'] class q4(Page): form_model = "player" form_fields = ['answer4'] class Description_ver6(Page): pass class q5(Page): form_model = "player" form_fields = ['answer5'] class q6(Page): form_model = "player" form_fields = ['answer6'] class q7(Page): form_model = "player" form_fields = ['answer7'] class q8(Page): form_model = "player" form_fields = ['answer8'] class Results(Page): pass page_sequence = [ Description, q1, q2, q3, q4, Description_ver6, q5, q6, q7, q8, Results ]