from otree.api import * doc = """ """ class C(BaseConstants): NAME_IN_URL = 'intro_spectator' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass # PAGES class OverviewSpectator(Page): pass page_sequence = [OverviewSpectator]