from .models import * class Contribution(Page): form_model = 'player' form_fields = ['contribution'] class MyWaitPage(WaitPage): after_all_players_arrive = 'set_payoffs' body_text = 'Waiting for other players to contribute' class Results(Page): form_model = 'player' page_sequence = [Contribution, MyWaitPage, Results]