import random from random import randrange, random, randint from Introduction.config import * from otree.api import * from . import models author = 'Your name here' class Constants(BaseConstants): name_in_url = 'Introduction' players_per_group = None endowment = 10 num_rounds = 1 instructions_template_AMBG = 'Introduction/Instruction_AMBG.html' instructions_template_CNP_high = 'Introduction/Instruction_CNP_high.html' instructions_template_CNP_low = 'Introduction/Instruction_CNP_low.html' instructions_template_No_CNP = 'Introduction/Instruction_No_CNP.html' class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass # ******************************************************************************************************************** # # *** PAGES *** # # ******************************************************************************************************************** # class Introduction_No_CNP(Page): pass class Introduction_CNP_low(Page): pass class Introduction_CNP_high(Page): pass class Introduction_AMBG(Page): pass # ******************************************************************************************************************** # # *** PAGE SEQUENCE *** # # ******************************************************************************************************************** # page_sequence = [ Introduction_No_CNP, Introduction_CNP_low, Introduction_CNP_high, Introduction_AMBG ]