from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Introduction(Page): timeout_seconds = 100 class ExchangeInstructions(Page): timeout_seconds = 100 class ExchangeWaitPage(WaitPage): pass #the page order page_sequence = [Introduction, ExchangeWaitPage, ExchangeInstructions]