Seed: {{ seed }}
{% if theme %}Theme: {{ theme }}{% endif %}
{% if permalink %}
{% endif %}
{% if show_diagnostics and diagnostics %}
Att {{ diagnostics.attempts }}
{{ diagnostics.elapsed_ms }}ms
{% if diagnostics.timeout_hit %}Timeout{% endif %}
{% if diagnostics.retries_exhausted %}Retries{% endif %}
{% if fallback or diagnostics.fallback %}Fallback{% endif %}
{% endif %}
Commander
{{ commander }}
{% if summary %}
{# Reuse the comprehensive deck summary partial #}
{% include "partials/deck_summary.html" %}
{% else %}
{% for card in decklist %}
{% if card.name %}
- {{ card.name }}{% if card.count %} ×{{ card.count }}{% endif %}
{% else %}
- {{ card }}
{% endif %}
{% endfor %}
{% endif %}