from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class MyPage(Page): pass class ResultsWaitPage(WaitPage): pass class Results(Page): form_model = 'player' form_fields = [ 'loss1', 'loss2', 'age', 'year', 'dept', 'scholarship', 'father', 'mother', 'experiment', 'tercih', ] page_sequence = [MyPage, ResultsWaitPage, Results]