{% extends "base.html" %} {% block banner_subtitle %}Finished Decks{% endblock %} {% block content %}

Finished Decks

These are exported decklists from previous runs. Open a deck to view the final summary, download CSV/TXT, and inspect card types and curve.

{% if error %}
{{ error }}
{% endif %}
Compare
{% if items %}
{% for it in items %}
{% if it.display %} {{ it.display }}
Commander: {{ it.commander }}
{% else %} {{ it.commander }} {% endif %}
{% if it.tags and it.tags|length %}
Themes: {{ it.tags|join(', ') }}
{% endif %}
{% if it.mtime is defined %} {{ it.mtime | int }} {% endif %}
{% if it.txt_path %}
{% endif %}
{% endfor %}
{% else %}
No exports yet. Run a build to create one.
{% endif %} {% endblock %}