from otree.api import Currency as c, currency_range from . import models from ._builtin import Page, WaitPage from .models import Constants from otreeutils.pages import AllGroupsWaitPage, ExtendedPage, UnderstandingQuestionsPage, APPS_DEBUG from otree.api import Currency as c, currency_range from . import models from ._builtin import Page, WaitPage class Start_round1(Page): pass class Instructions(Page): pass class lotteryinfo(Page): pass class belief_exante (Page): form_model = models.Player form_fields = ['BeliefExAnte1'] class belief_expost (Page): form_model = models.Player form_fields = ['BeliefExPost1','BeliefExPost2','BeliefExPost3'] def before_next_page(self): self.player.set_payoff() class End_round (Page): pass #wait for all groups page_sequence = [ Start_round1, lotteryinfo, belief_exante, belief_expost, End_round, ] #Welcome, #ComputerTerminal, #Demographics, #instructions_overall, #instructions_task1, #instructions_beliefs, #instructions_task1_performer, #SomeUnderstandingQuestions, #NormalWaitPage1,