from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class MyPage1(Page): pass class MyPage11(Page): form_model = 'player' form_fields = ['select1','select2','select3','select4','select5','select6','select7','select8','select9','select10','select11','select12','select13','select14','select15','select16','select17','select18','select19','select20'] class ResultsWaitPage(WaitPage): def after_all_players_arrive(self): pass class Results(Page): pass page_sequence = [ MyPage1, MyPage11, Results ]