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

Add session

New session

{% endif %}

History

All sessions

{{ sessions|length }} total {% if can_manage and empty_count > 0 %}
{% endif %}
{% if sessions %}
{% for session in sessions %} {% set sm = db_id_to_summary.get(session.id) %}
{{ session.session_date.strftime('%b') }} {{ session.session_date.strftime('%-d') }}
S{{ session.sequence_on_date }} {% if sm and sm.entries %} · {{ sm.entries|length }} player{{ 's' if sm.entries|length != 1 else '' }} · {{ sm.total_invested_cents | money }} pot {% if sm.total_current_due_to_house_cents > 0 or sm.total_current_due_to_player_cents > 0 %} · {{ (sm.total_current_due_to_house_cents + sm.total_current_due_to_player_cents) | money }} open {% endif %} {% endif %} {% if session.notes %}· {{ session.notes }}{% endif %}
{{ session.status }} View {% if can_manage %} Manage {% if session.status == 'open' %}
{% else %} {% endif %} {% endif %}
{% endfor %}
{% else %}

No sessions yet

Create the first session above. Same-day sessions will automatically become S1, S2, and so on.

{% endif %}
{% endblock %}