from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class WELCOME(Page): def is_displayed(self): return self.round_number == 1 class Genel(Page): timeout_seconds = 120 class Asama1(Page): timeout_seconds = 600 class IntroWaitPage(WaitPage): wait_for_all_groups = True page_sequence = [ WELCOME, Genel, Asama1, IntroWaitPage]