from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants from . import models class WorkPage(Page): timer_text = 'Time left to complete this round:' timeout_seconds = Constants.task_time class ResultsWaitPage(WaitPage): pass class Results(Page): pass page_sequence = [WorkPage,]