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

Finished Deck

Commander: {{ commander }}{% if tags and tags|length %} • Themes: {{ tags|join(', ') }}{% endif %}
This view mirrors the end-of-build summary. Use the buttons to download the CSV/TXT exports.
{% if commander %} {{ commander }}
Commander: {{ commander }}
{% endif %}
{% if csv_path %}
{% endif %} {% if txt_path %}
{% endif %}
{% if summary %} {% if owned_set %} {% set ns = namespace(owned=0, total=0) %} {% set tb = summary.type_breakdown %} {% if tb and tb.cards %} {% for t, clist in tb.cards.items() %} {% for c in clist %} {% set cnt = c.count if c.count else 1 %} {% set ns.total = ns.total + cnt %} {% if c.name and (c.name|lower in owned_set) %} {% set ns.owned = ns.owned + cnt %} {% endif %} {% endfor %} {% endfor %} {% endif %} {% set not_owned = (ns.total - ns.owned) %} {% set pct = ( (ns.owned * 100.0 / (ns.total or 1)) | round(1) ) %}
Ownership
Owned: {{ ns.owned }} • Not owned: {{ not_owned }} • Total: {{ ns.total }} ({{ pct }}%)
{% endif %} {% include "partials/deck_summary.html" %} {% else %}
No summary available.
{% endif %}
{% endblock %}