from otree.api import * doc = """ Your app description """ class C(BaseConstants): NAME_IN_URL = 'thankyou' PLAYERS_PER_GROUP = None # TASKS = ['VP', 'VPR', 'VT', 'MP', 'MPR', 'MT'] NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass # FUNCTIONS class thankyou(Page): form_model = 'player' page_sequence = [thankyou]