{% extends "base.html" %} {% block banner_subtitle %}Finished Decks{% endblock %} {% block content %} {% 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 %}