from otree.api import * c = cu doc = '' class C(BaseConstants): NAME_IN_URL = 'ConsentForm' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass class ConsentForm(Page): form_model = 'player' @staticmethod def app_after_this_page(player: Player, upcoming_apps): import random return random.choice(['a_nso_sm_ed_info', 'b_nso_lg_ed_info', 'c_so_sm_ed_info', 'd_so_lg_ed_info']) page_sequence = [ConsentForm]