from otree.api import * class C(BaseConstants): NAME_IN_URL = 'improv_recruit' PLAYERS_PER_GROUP = 1 NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass class Consent2(Page): form_model = 'player' class Schedule(Page): form_model = 'player' class EndPage(Page): form_model = 'player' page_sequence = [Consent2, Schedule, EndPage]