from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Novelty(Page): form_model = 'player' form_fields = ['novelNS1_1', 'novelNS1_2', 'novelNS1_3', 'novelNS1_4', 'novelNS1_5', 'novelNS1_6', 'novelNS1_7', 'novelGL_1', 'novelGL_2', 'novelGL_3'] class RiskQ(Page): form_model = 'player' form_fields = ['risk1', 'riskd1', 'riskd2'] # this means player.name, player.age class Results(Page): pass page_sequence = [Novelty, RiskQ, Results]