{% extends "base.html" %} {% block title %}{{ session_label(session) }} · boker.club{% endblock %} {% block page_class %}page--session{% endblock %} {% block content %}
Session #{{ "%03d"|format(session_number) }}
{{ session.entries|length }} player{{ 's' if session.entries|length != 1 else '' }} · {{ session.status }}
| Player | Invested | Cash-out | Net | Cash paid | Settlement | Status | Fronted | Rolled in | Gross payout | Rolled out | Notes |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ entry.player_name }} | {{ entry.invested_cents | money }} | {{ entry.cash_out_cents | money }} | {{ '+' if entry.net_cents > 0 else '' }}{{ entry.net_cents | money }} | {{ entry.paid_cents | money }} | {% if entry.current_due_to_house_cents > 0 %} owes {{ entry.current_due_to_house_cents | money }} {% else %} {{ entry.current_due_to_player_cents | money }} {% endif %} | {{ entry.payout_status }} | {{ entry.front_cents | money }} | {{ entry.rollover_in_cents | money }} | {% if entry.player_owes_gross_cents > 0 %}—{% else %}{{ entry.gross_payout_cents | money }}{% endif %} | {{ entry.rollover_out_cents | money }} |
{% if entry.notes %}
|
{{ event.amount_cents | money }}
{{ event.created_at }}
No events recorded.
{% endfor %}