from otree.api import Currency as c from ._builtin import Page, WaitPage from .models import Constants class Demographics(Page): form_model = 'player' form_fields = ['age', 'gender', 'sisters_brothers', 'student', 'field_of_studies', 'level_of_study', 'couple', 'confident'] class Groupe(Page): form_model = 'player' form_fields = ['groupe'] class CognitiveReflectionTest(Page): form_model = 'player' form_fields = ['crt_bat', 'crt_widget', 'crt_lake'] page_sequence = [Demographics, Groupe]