from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Introduction(Page): pass class Decision(Page): form_model = 'player' form_fields = ['volunteer'] class ResultsWaitPage(WaitPage): <<<<<<< HEAD after_all_players_arrive = 'set_payoffs' ======= def after_all_players_arrive(self): self.group.set_payoffs() >>>>>>> 0982dc5566ffb7cb2176b6338e4f4497a3d00fc3 class Results(Page): pass <<<<<<< HEAD page_sequence = [Introduction, Decision, ResultsWaitPage, Results] ======= page_sequence = [Introduction, Decision, ResultsWaitPage, Results] >>>>>>> 0982dc5566ffb7cb2176b6338e4f4497a3d00fc3