from otree.api import * c = cu doc = '' class C(BaseConstants): NAME_IN_URL = 'finalize' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass class Tally(Page): form_model = 'player' @staticmethod def vars_for_template(player: Player): participant = player.participant return dict(endpoints=player.participant.vars['points']) page_sequence = [Tally]