{% extends "base.html" %} {% block title %}Leaderboard · myboker.org{% endblock %} {% block content %}

All-time results

Leaderboard

{{ session_count }} session{{ 's' if session_count != 1 else '' }}{% if selected_session_date %} through {{ selected_session_label }}{% endif %}

Cash paid out
{{ cash_paid_out_cents | money }}
Sessions
{{ session_count }}{% if total_session_count != session_count %} / {{ total_session_count }}{% endif %}
Players
{{ all_count }}
Trend

Cumulative profit

{% if mode == 'eligible' %} {{ eligible_min_sessions }}+ sessions required. Keeps one-off guests from skewing standings. {% elif mode == 'all' %} Everyone who's sat down — rankings can swing on tiny samples. {% else %} Form guide — aggregated over the last 5 sessions only. {% endif %}

{% if selected_session_id %} Reset {% endif %}
{% for player in main_board %} {% set idx = loop.index %} {% else %} {% endfor %}
#
#{{ idx }} {{ player.player_name }} {% if player.rank_change > 0 %} ▲{{ player.rank_change }} {% elif player.rank_change < 0 %} ▼{{ player.rank_change | abs }} {% else %} {% endif %} {{ '+' if player.total_net_cents > 0 else '' }}{{ 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 }}
No players yet — add the first event from the admin page.
{% if mode == 'eligible' and provisional_board %}
Provisional · fewer than {{ eligible_min_sessions }} sessions
{% for player in provisional_board %}

{{ player.player_name }}

{{ player.sessions_played }} sess {{ player.total_net_cents | money }}
{% endfor %}
{% endif %} {% endblock %}