from ._builtin import Page import json import random class Letsgetstarted(Page): form_model = 'player' form_fields = ['name', 'company', 'position'] def is_displayed(self): return True class instructions(Page): form_model = 'player' def is_displayed(self): return True page_sequence = [ Letsgetstarted, instructions, ]