from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class MyPage(Page): pass class ResultsWaitPage(WaitPage): pass class Results(Page): pass class IVs1(Page): form_model = "player" form_fields = ["rat1", "ration_superior", "emostab1"] class Szen(Page): form_model = "player" page_sequence = [IVs1, Szen]