from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Questions(Page): form_model = 'player' form_fields = ['age','student','studentstudy','studentyear', 'notstudent', 'region', 'spending', 'leisure'] class Instructions_F(Page): form_model = 'player' class ResultsWaitPage(WaitPage): pass class Results(Page): pass page_sequence = [Instructions_F, Questions]