from otree.api import Currency as c, currency_range from . import models from ._builtin import Page, WaitPage from .models import Constants class MyPage(Page): pass class CognitiveReflectionTest(Page): form_model = 'player' form_fields = ['crt_stock', 'crt_bond'] class Results(Page): pass page_sequence = [MyPage, CognitiveReflectionTest, Results]