from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Introduction_Page1(Page): form_model = 'player' form_fields = ['guess'] class Post_questionnaire(Page): form_model = 'player' form_fields = ['fullname'] page_sequence = [Introduction, Guess, ResultsWaitPage, Results, Post_quesionnaire ]