from otree.api import * from random import randint, uniform doc = """ Your app description """ class C(BaseConstants): NAME_IN_URL = 'instructions' PLAYERS_PER_GROUP = 8 NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass # PAGES class Instructions_1(Page): form_model = "player" class Instructions_2(Page): form_model = "player" class Instructions_3(Page): form_model = "player" class Instructions_4(Page): form_model = "player" class Instructions_5(Page): form_model = "player" page_sequence = [Instructions_1, Instructions_2, Instructions_3, Instructions_4, Instructions_5]