from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class questionnaire(Page): form_model = 'player' form_fields = ['amount_donation', 'q_decision_process'] class Demographics(Page): form_model = 'player' form_fields = ['gender','age', "living_place" , 'Educational_background', "donation_experience", "abroad_experience", 'familiar', 'q_understanding', 'address'] class CognitiveReflectionTest(Page): pass page_sequence = [Demographics, questionnaire, CognitiveReflectionTest]