from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Demographics(Page): form_model = 'player' form_fields = ['gender','age','possession'] class Demographics2(Page): form_model = 'player' form_fields = ['imp_1','imp_2','imp_3'] class CognitiveReflectionTest(Page): pass page_sequence = [Demographics,Demographics2,CognitiveReflectionTest]