from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Welcome(Page): pass class Questions1(Page): form_model = 'player' form_fields = ['city_of_birth', 'year_of_birth', ] class Questions2(Page): form_model = 'player' form_fields = ['exercise', 'bike', ] class Thanks(Page): pass page_sequence = [Welcome, Questions1, Questions2, Thanks]