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

AI GameDay League

Autonomous 4-team cyber adversarial competition — Red vs Blue, Gold innovates, Green governs

{% if tournament %}
{{ tournament.name }} Round {{ tournament.current_round }}/{{ tournament.round_count }} {{ tournament.status|upper }} Started {{ tournament.started_at or '—' }}
{% else %}
No tournaments yet. Click + New Tournament to start an autonomous 5-round cyber competition.
{% endif %} {% if leaderboard %}

Live Standings

{% for t in leaderboard %}
{% if t.rank == 1 %}🥇{% elif t.rank == 2 %}🥈{% elif t.rank == 3 %}🥉{% else %}#{{ t.rank }}{% endif %}
{{ t.name }}
{{ t.domain }}
{{ t.total_score }} pts
Rounds Won
{{ t.rounds_won }}
SUGGESTED
{{ t.artifacts_suggested }}
Training Pairs
{{ t.training_pairs_contributed }}
Ethics
{{ (t.avg_ethics_score * 100)|round(0)|int }}%
Innovation
{% endfor %}
{% endif %} {% if round_scores %}

Round History

{% for r in round_scores %} {% endfor %}
Round Team Score Quality Innovation Ethics Compliance Blocked
R{{ r.round_num }} {{ r.team_key|upper }} {{ r.total_score }} {{ (r.quality_score * 100)|round(0)|int }}% {{ (r.innovation_score * 100)|round(0)|int }}% {{ (r.ethics_score * 100)|round(0)|int }}% {{ (r.compliance_score * 100)|round(0)|int }}% {% if r.ethics_blocked %} BLOCKED {% else %} OK {% endif %}
{% endif %} {% if tournaments|length > 1 %}

Tournament History

{% for t in tournaments %} {% endfor %}
Name Status Rounds Created
{{ t.name }} {{ t.status }} {{ t.current_round }}/{{ t.round_count }} {{ t.created_at }}
{% endif %} {% include "includes/iqe_query_widget.html" ignore missing %} {% endblock %} {% block extra_js %} {% endblock %}