{% extends "base.html" %} {% block title %}AI GameDay โ€” Scenarios{% endblock %} {% block content %}
{% for slug, sc in scenarios.items() %}
{{ sc.icon }}
{{ sc.label }}
{{ sc.audience }} ยท {{ sc.difficulty }}

{{ sc.description }}

Tech mix: {{ (sc.tech_min * 100)|round(0)|int }}โ€“{{ (sc.tech_max * 100)|round(0)|int }}% ยท Ideal: {{ (sc.tech_ideal * 100)|round(0)|int }}%
{{ slug }}
{% endfor %}

๐Ÿ’ก Use the scenario slug when creating a new session to automatically tune team formation and role matching for that exercise. Create a session โ†’

{% endblock %}