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 = ['age', 'gender', 'grade', 'education'] class CognitiveReflectionTest(Page): form_model = 'player' form_fields = ['crt_bat', 'crt_widget', 'crt_lake'] class TrustMeasurement(Page): form_model = 'player' form_fields = ['crt_trust1', 'crt_trust2', 'crt_trust3'] page_sequence = [ Demographics, TrustMeasurement, CognitiveReflectionTest ]