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 = ['Name_surname', 'age', 'gender' , 'ethnicity', 'Mother_tongue', 'Highest_education', 'Employment_status','Housed_income_source', 'Housed_Total_monthly_income', 'Marital_status', 'Relationship_tothe_head', 'Residence_type'] class CognitiveReflectionTest(Page): form_model = 'player' form_fields = ['crt_bat', 'crt_lake'] page_sequence = [Demographics, CognitiveReflectionTest]