{% extends "base.html" %} {% block title %}AI GameDay — Hub{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

🎮 AI GameDay

Competitive tabletop exercises where teams score points by actually using AI — not just knowing the answers.

Join a Session

Create New Session

{% if active_sessions or pending_sessions %}

Active Sessions

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

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

🎭 {{ s.facilitator_name }} ⏱️ {{ s.duration_minutes }}min
Join Code: {{ s.join_code }}
🎮 Facilitate 📊 Leaderboard ⚡ Simulate
{% endfor %}
{% endif %} {% if past_sessions %}

Past Sessions

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

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

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