from otree.api import * doc = """ Your app description """ class C(BaseConstants): NAME_IN_URL = 'instructions2' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass # PAGES class Instructions2(Page): @staticmethod def vars_for_template(player: Player): return dict( image = "images/instructions3.png" ) class Instructions2Wait(WaitPage): pass class Results(Page): pass page_sequence = [Instructions2, Instructions2Wait]