from . import models from ._builtin import Page, WaitPage from otree.api import Currency as c, currency_range from .models import Constants import math import settings import time class DummyPage(Page): def is_displayed(self): # time.time() returns the number of seconds passed since epoch (January 1, 1970, 00:00:00) self.participant.vars['experiment_ending_time'] = time.time() return False page_sequence = [ DummyPage, ]