from otree.api import Page class EndPage(Page): @staticmethod def is_displayed(player): return True # Эта страница будет отображаться для всех участников def vars_for_template(self): return dict( end_message="Спасибо за участие в эксперименте! Ваши результаты были сохранены." )