{% extends "base.html" %} {% block title %}{{ player.player_name }} · boker.club{% endblock %} {% block content %}
{% if player_rank %}

Rank #{{ player_rank }}

{% endif %}

{{ player.player_name }}

{{ player.sessions_played }} session{{ 's' if player.sessions_played != 1 else '' }} · {{ "%.1f"|format(player.win_pct) }}% win rate

Total net
{{ '+' if player.total_net_cents > 0 else '' }}{{ player.total_net_cents | money }}
Win rate
{{ "%.1f"|format(player.win_pct) }}%
{{ player.winning_sessions }}W · {{ player.losing_sessions }}L · {{ player.break_even_sessions }}E
ROI
{{ "%.1f"|format(player.roi_pct) }}%
Sessions
{{ player.sessions_played }}
Current W/L
{{ player.current_win_streak }}W {{ player.current_loss_streak }}L
Longest {{ player.longest_win_streak }}W · {{ player.longest_loss_streak }}L
Best / worst
{{ player.biggest_win_cents | money }} {{ player.biggest_loss_cents | money }}
Total invested
{{ player.total_invested_cents | money }}
Cash-outs
{{ player.total_cash_out_cents | money }}
Trend

Cumulative profit

Session by session

Results

Breakdown

Result mix

{% set result_total = player.winning_sessions + player.losing_sessions + player.break_even_sessions %}
{% if player.winning_sessions > 0 %} {% endif %} {% if player.break_even_sessions > 0 %} {% endif %} {% if player.losing_sessions > 0 %} {% endif %}
Wins {{ player.winning_sessions }} · {{ "%.1f"|format((player.winning_sessions / result_total * 100) if result_total else 0) }}%
Even {{ player.break_even_sessions }} · {{ "%.1f"|format((player.break_even_sessions / result_total * 100) if result_total else 0) }}%
Losses {{ player.losing_sessions }} · {{ "%.1f"|format((player.losing_sessions / result_total * 100) if result_total else 0) }}%
{% if result_total > 0 %}
±$1.00 counts as even
{% endif %}
Poker performance

Game results

Total Net {{ '+' if player.total_net_cents > 0 else '' }}{{ player.total_net_cents | money }}
Win % {{ "%.1f"|format(player.win_pct) }}%
ROI {{ "%.1f"|format(player.roi_pct) }}%
Average Win {{ player.avg_win_cents | money }}
Average Loss {{ player.avg_loss_cents | money }}
Best / Worst {{ player.biggest_win_cents | money }} / {{ player.biggest_loss_cents | money }}
Win / Loss Streak {{ player.current_win_streak }}W · {{ player.current_loss_streak }}L
Longest Win / Loss {{ player.longest_win_streak }}W · {{ player.longest_loss_streak }}L
Poker basis

Investment and settlement

{% if player.total_front_collected_cents > 0 %} {% endif %} {% if player.current_player_owes_cents > 0 %} {% endif %} {% if player.total_front_writeoff_cents > 0 %} {% endif %}
Buy-ins paid {{ player.total_buy_in_cents | money }}
Fronted {{ player.total_front_cents | money }}
Rolled in {{ player.total_rollover_in_cents | money }}
Total invested {{ player.total_invested_cents | money }}
Cash-outs {{ player.total_cash_out_cents | money }}
Rolled out {{ player.total_rollover_out_cents | money }}
Paid out {{ player.total_paid_cents | money }}
Debt repaid {{ player.total_front_collected_cents | money }}
Still owes {{ player.current_player_owes_cents | money }}
Written off {{ player.total_front_writeoff_cents | money }}
{% endblock %}