{% extends "base.html" %} {% block title %}AI League — {{ team_key|upper }} Team{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
← AI League {% if detail.team %}

{{ detail.team.name }}

{{ detail.team.domain }} {% else %}

{{ team_key|upper }} Team

{% endif %}
{% if not detail %}
No data yet for this team.
{% else %} {% if detail.team %}
{% set t = detail.team %}
{{ t.total_score }}
Total Score
{{ t.rounds_won }}
Rounds Won
{{ t.artifacts_suggested }}
SUGGESTED
{{ t.training_pairs_contributed }}
Training Pairs
{% endif %} {% if detail.evals %}

Round Evaluations

{% for e in detail.evals %} {% endfor %}
Round Score Quality Innovation Ethics Adversarial Compliance Notes
R{{ e.round_num }} {{ e.total_score }} {{ (e.quality_score * 100)|round(0)|int }}% {{ (e.innovation_score * 100)|round(0)|int }}% {{ (e.ethics_score * 100)|round(0)|int }}% {% if e.ethics_blocked %} BLOCKED{% endif %} {{ (e.adversarial_score * 100)|round(0)|int }}% {{ (e.compliance_score * 100)|round(0)|int }}% {{ e.judge_notes or '—' }}
{% endif %} {% if detail.artifacts %}

Recent Artifacts

{% for a in detail.artifacts %}
{{ a.member_role }} {{ a.artifact_type }} {{ a.model_used }} · {{ a.tokens_used }} tokens · {{ a.latency_ms }}ms
{{ a.content_excerpt }}
{% endfor %}
{% endif %} {% endif %} {% endblock %}