from otree.api import * c = cu doc = '' class C(BaseConstants): NAME_IN_URL = 'blank_app2' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): string1 = models.StringField() Top = models.StringField() class Player(BasePlayer): pass class MyPage(Page): form_model = 'group' form_fields = ['string1', 'Top'] class MyPage4(Page): form_model = 'group' form_fields = ['Top'] class MyPage2(Page): form_model = 'group' form_fields = ['string1'] class MyPage3(Page): form_model = 'player' class MyPage5(Page): form_model = 'player' page_sequence = [MyPage, MyPage4, MyPage2, MyPage3, MyPage5]