{% extends "base.html" %} {% block title %}{{ league.name }} · myboker.org{% endblock %} {% block sidebar %}{% include "_league_sidebar.html" %}{% endblock %} {% block page_class %}page--app{% endblock %} {% block content %}
{{ league.visibility }} {% if is_owner %}Owner{% endif %}

{{ league.name }}

{% if league.description %}

{{ league.description }}

{% endif %}
{% if is_owner %}
Settings New session
{% endif %}
{% if counts.open_sessions > 0 %}
{{ counts.open_sessions }} session{{ 's' if counts.open_sessions != 1 else '' }} in progress View sessions →
{% endif %}
{{ counts.players }} Players
{{ counts.sessions }} Sessions{% if counts.open_sessions > 0 %} · {{ counts.open_sessions }} live{% endif %}
{{ counts.events }} Ledger events
{{ counts.seasons }} Seasons
{% if cash_stats.has_data %}
Total cash in {{ cash_stats.total_cash_in | money }}
Total paid out {{ cash_stats.total_paid_out | money }}
Avg pot / session {{ cash_stats.avg_pot | money }}
Avg players {{ cash_stats.avg_players }}
Avg buy-in {{ cash_stats.avg_buyin | money }}
Biggest session {{ cash_stats.biggest_pot | money }}
{% if cash_stats.avg_sessions_per_month > 0 %}
Sessions / month {{ cash_stats.avg_sessions_per_month }}
{% endif %} {% if cash_stats.total_fronts > 0 %}
Fronts issued {{ cash_stats.total_fronts | money }}
{% endif %}
{% endif %} {% if cash_stats.has_sessions %}
Session history
{% endif %}
Sessions {% if counts.open_sessions > 0 %} {{ counts.open_sessions }} live {% endif %}

Open a session to start tracking buy-ins and cashouts in real time. Close it when everyone is done.

Leaderboard

Net profit, ROI, win rate, and rank delta. Filter by eligible players or switch to recent form.

Players

View each player's full session history, net trend, and individual stats over time.

Seasons

Browse sessions by season, view season standings, and manage date ranges.

{% if can_manage %}
League ledger

Track what the house holds, what it owes, and outstanding fronts across all sessions.

{% endif %}
{% endblock %}