from ._builtin import Page, WaitPage from otree.api import Currency as c, currency_range from .models import Constants class Intro1(Page): pass class Intro2(Page): pass class IntroInstructions(Page): pass class IntroInstructionsTask1(Page): pass class IntroInstructionsCq1(Page): form_model = 'player' form_fields = ['cq1_group_members', 'cq1_payoff_sucker', 'cq1_payoff_bothcoop', 'cq1_aggr_bothcoop', 'cq1_aggr_bothdef', 'cq1_highest_payoff'] page_sequence = [ Intro1, Intro2, IntroInstructions, IntroInstructionsTask1, IntroInstructionsCq1, ]