from .models import * class MYsurvey(Page): form_model = 'player' form_fields = ['isim', 'age'] class Results(Page): form_model = 'player' page_sequence = [MYsurvey, Results]