{% extends "ui/base_ui.html" %} {% block title %}ATP ยท Matches{% endblock %} {% block content %}

Matches

{{ total }} completed El Farol matches
{% if matches %} {% for m in matches %} {% endfor %}
Match Completed Agents Days Status
{{ m.match_id or m.id }} {{ m.completed_at.strftime("%Y-%m-%d %H:%M") if m.completed_at else "โ€”" }} {{ m.num_players }} {{ m.num_days or m.num_rounds }} {{ m.status }} Open dashboard โ†’
{% else %}

No completed El Farol matches yet. Run one via uv run atp game <suite.yaml> and it will show up here.

See how El Farol works โ†’

{% endif %}
{% endblock %}