from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Welcome(Page): pass #This is a page on which nothing happens. Participants only see text but don't enter anything. class Question(Page): form_model = 'player' form_fields = ['first_name', 'age', 'economics'] #On this participants have to fill fields in. We have to indicate which fields exactly appear on this page. class Thanks(Page): pass page_sequence = [Welcome, Question, Thanks] #This is very important! Only pages listed here are actually displayed and exactly in the order of this list.