from .models import * class Introduction(Page): form_model = 'player' class Decision(Page): form_model = 'player' form_fields = ['volunteer'] class ResultsWaitPage(WaitPage): after_all_players_arrive = 'set_payoffs' class Results(Page): form_model = 'player' page_sequence = [Introduction, Decision, ResultsWaitPage, Results]