{% extends "base.html" %} {% block title %}GameDay — Launch Simulation{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

⚡ GameDay Simulation

Select a session to launch the looping phase-by-phase simulation demo.

{% if active_sessions or pending_sessions %}

🟢 Active & Pending Sessions

{% for s in active_sessions + pending_sessions %}
{{ s.state }} {{ s.session_mode }}

{{ s.scenario_slug.replace('_',' ').title() }}

🎭 {{ s.facilitator_name }} ⏱ {{ s.duration_minutes }}min
Code: {{ s.join_code }}
⚡ Launch Simulation
{% endfor %}
{% else %}
🎯

No active sessions. Create one on the Hub →

{% endif %} {% if past_sessions %}

📼 Past Sessions — Replay

{% for s in past_sessions %}
ended {{ s.session_mode }}

{{ s.scenario_slug.replace('_',' ').title() }}

🎭 {{ s.facilitator_name }} {{ s.ended_at[:10] if s.ended_at else '' }}
⚡ Replay Simulation
{% endfor %}
{% endif %} {% endblock %}