from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class ResultsWaitPage(WaitPage): def after_all_players_arrive(self): pass body_text = "Waiting for other participants to submit their forecasts." class results(Page): form_model = 'player' class forecasts(Page): form_model = 'player' form_fields = ['forecast_p13', 'forecast_p14', 'forecast_p15', 'forecast_p16', 'forecast_p17', 'forecast_p18'] page_sequence = [ forecasts, ResultsWaitPage, results ]