from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Part2InstOwner(Page): pass class DescInst(Page): form_model = 'player' form_fields = ['ReadInst'] class Part2Transition(WaitPage): pass page_sequence = [Part2Transition,Part2InstOwner, DescInst]