from otree.api import * c = cu doc = '' class C(BaseConstants): NAME_IN_URL = 'crt' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): CRT_2 = models.FloatField(label='') CRT_3 = models.FloatField(label='') CRT_1 = models.StringField(label='') class CognitiveReflectionTest(Page): form_model = 'player' form_fields = ['CRT_2', 'CRT_3', 'CRT_1'] class Finish(Page): form_model = 'player' page_sequence = [CognitiveReflectionTest, Finish]