from ._builtin import Page class Instructions(Page): form_model = 'player' form_fields = ["agreement"] class FinishStudy(Page): form_model = 'player' def is_displayed(self): return self.player.agreement == False page_sequence = [Instructions, FinishStudy]