from ._builtin import Page, WaitPage from otree.api import Currency as c, currency_range from .models import Constants class Introduction(Page): """Beschreibung des Experiments""" pass class Survey1(Page): form_model = 'player' form_fields = ['q1', 'q2', 'q3', 'q4'] class Survey1Results(Page): pass page_sequence = [Introduction, Survey1, Survey1Results, ]