from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class MyPage(Page): form_model='player' form_fields={'name','age','gender'} pass class ResultsWaitPage(WaitPage): def after_all_players_arrive(self): pass pass class Results(Page): pass class jstest(Page): pass class jstest2(Page): pass class Introduction(Page): pass class jscombo(Page): pass class Instructions(Page): pass page_sequence = [ #Introduction, #jstest2, #jscombo, #Introduction, Instructions, #MyPage, #ResultsWaitPage, #Results ]