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 = ['tc_0', 'tc_1_1', 'tc_1_2', 'tc_1_3', 'tc_1_4', 'tc_1_5'] class ResultsWaitPage(WaitPage): def after_all_players_arrive(self): pass class Results(Page): pass page_sequence = [ MyPage, ]