from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class CognitiveReflectionTest(Page): form_model = 'player' form_fields = ['crt_bat', 'crt_widget', 'crt_lake'] class OpenResponse(Page): form_model = 'player' form_fields = ['groupiness2', 'switchwhy', 'contributionwhy'] class Demographics(Page): form_model = 'player' form_fields = ['age', 'gender', 'year', 'athlete', 'greek', 'zipcode'] class Demographics2(Page): form_model = 'player' form_fields = ['athlete2', 'greek2', 'college', 'major', 'firstgen'] class RaceEthnicity(Page): form_model = 'player' form_fields = ['black', 'white', 'asian', 'native', 'mexican', 'central', 'caribbean', 'south'] page_sequence = [CognitiveReflectionTest, OpenResponse, Demographics, Demographics2, RaceEthnicity]