from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class End(Page): pass class Networkvid(Page): timeout_seconds = 90 def vars_for_template(self): return {"image_path": "global/background_network.png", 'audio_path': 'global/network.mp3',} class Surveyvid(Page): timeout_seconds = 90 def vars_for_template(self): return {"image_path2": "global/background_survey.png", 'audio_path2': 'global/survey.mp3'} class Linkler(Page): pass page_sequence = [End, Surveyvid, Linkler]