from ._builtin import Page, WaitPage from otree.api import Currency as c, currency_range from .models import Constants class IntroWait(WaitPage): wait_for_all_groups = True class IntroInstructions(Page): pass class IntroInstructionsTask2(Page): pass class IntroInstructionsCq2(Page): form_model = 'player' form_fields = ['cq2_group_members', 'cq2_match_termination', 'cq2_cont_prob', 'cq2_within_matching', 'cq2_payoff_match_bothcoop', 'cq2_payoff_match_bothdef', 'cq2_payoff_match_sucker'] page_sequence = [ IntroWait, IntroInstructions, IntroInstructionsTask2, IntroInstructionsCq2, ]