from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class IQ_A_Instructions(Page): form_model = 'player' form_fields = [ 'iqctrl1', 'iqctrl2', 'iqctrl3', ] def error_message(self, value): return self.player.set_error_message(value) page_sequence = [IQ_A_Instructions]