from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class A_Wait(Page): def is_displayed(self): return self.round_number == 1 class B_RoundIntro(Page): pass class C_InvestmentInfo(Page): pass page_sequence = [ A_Wait, B_RoundIntro, C_InvestmentInfo, ]