from otree.api import * doc = """ Instructions app """ class C(BaseConstants): NAME_IN_URL = 'stress_mod' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): Intro_offset = models.StringField() # PAGES class General_instruction(Page): pass class Experimental_instruction(Page): pass class Final_instruction(Page): pass page_sequence = [General_instruction, Experimental_instruction, Final_instruction]