from ._builtin import Page, WaitPage from .models import Constants import time class consent(Page): pass class GIntro1(Page): pass class GIntro2(Page): def before_next_page(self): self.participant.vars['wait_page_arrival'] = time.time() self.participant.vars['time'] = 0 page_sequence = [ GIntro1, GIntro2, ]