{% extends "base.html" %} {% block title %}Compare Builds - {{ config.commander }}{% endblock %} {% block content %}

Compare {{ build_count }} Builds

Commander: {{ config.commander }} {% if config.tags %} | Themes: {{ config.tags | join(", ") }} {% endif %} | Bracket: {{ config.bracket }}
{# Overview Stats #}
{{ overlap_stats.total_unique_cards }}
Unique Cards Total
{{ overlap_stats.cards_in_all }}
In All Builds
{{ overlap_stats.cards_in_most }}
In Most Builds (80%+)
{{ overlap_stats.cards_in_some }}
In Some Builds
{{ overlap_stats.cards_in_few }}
In Few Builds
{# Most Common Cards #}
📊 Most Common Cards
{% for card_name, count in overlap_stats.most_common[:20] %}
{{ card_name }} {{ count }}/{{ build_count }}
{% endfor %}
{# Individual Build Comparisons #}

Individual Builds

{% for build in builds %}

Build #{{ build.build_number }}

Total Cards
{{ build.total_cards }}
Creatures
{{ build.creatures }}
Lands
{{ build.lands }}
Artifacts
{{ build.artifacts }}
Enchantments
{{ build.enchantments }}
Instants
{{ build.instants }}
Sorceries
{{ build.sorceries }}
Planeswalkers
{{ build.planeswalkers }}
View All Cards ({{ build.total_cards }})
{% for card in build.cards %}
{{ card.name if card is mapping else card }}
{% endfor %}
{% endfor %}
{# Actions #}
Build New Deck
{# Synergy Preview Container #}
{% endblock %}