{% extends "base.html" %}
{% block title %}Leaderboard · Poker Portal{% endblock %}
{% block content %}
All-time results Track who is up, who is chasing, and how everyone has moved across {{ session_count }} recorded sessions{% if selected_session_date %} through {{ selected_session_label }}{% endif %}. Trend Quick read Standings Click any column to sort.Leaderboard
Cumulative profit over time
Table snapshot
All-time leaderboard
{% for player in leaderboard %}
{% else %}
#{{ loop.index }}
{{ player.player_name }}
{{ player.total_buy_in_cents | money }}
{{ player.total_cash_out_cents | money }}
{{ player.total_net_cents | money }}
{{ "%.1f"|format(player.win_pct) }}%
{{ "%.1f"|format(player.roi_pct) }}%
{{ player.avg_win_cents | money }}
{{ player.avg_loss_cents | money }}
{{ player.sessions_played }}
{% endfor %}
No data yet. Add the first event from the admin page.