from ._builtin import Page, WaitPage from otree.api import Currency as c, currency_range from .models import Constants class CreateGroups(WaitPage): group_by_arrival_time = 'true' body_text = "Waiting for other participants to join the session. Please be patient." class Prolific_Start(Page): form_model = 'player' form_fields = ['ProlificID'] class Informed_Consent(Page): pass class Rules_Online(Page): pass class Timer_Info(Page): pass page_sequence = [CreateGroups, Prolific_Start, Informed_Consent, Rules_Online]