Step 5: Build

Commander: {{ commander }}

Tags: {{ tags|default([])|join(', ') }}

Bracket: {{ bracket }}

{% if i and n %}
Stage {{ i }}/{{ n }}
{% endif %} {% if status %}
Status: {{ status }}{% if stage_label %} — {{ stage_label }}{% endif %}
{% endif %}
{% if added_cards %}

Cards added this stage

{% if stage_label and stage_label.startswith('Creatures') %} {% set groups = added_cards|groupby('sub_role') %} {% for g in groups %} {% set role = g.grouper %} {% if role %} {% set heading = 'Theme: ' + role.title() %} {% else %} {% set heading = 'Additional Picks' %} {% endif %}
{{ heading }}
{% for c in g.list %}
{{ c.name }} image
{{ c.name }}{% if c.count and c.count > 1 %} ×{{ c.count }}{% endif %}
{% if c.reason %}
{{ c.reason }}
{% endif %}
{% endfor %}
{% endfor %} {% else %}
{% for c in added_cards %}
{{ c.name }} image
{{ c.name }}{% if c.count and c.count > 1 %} ×{{ c.count }}{% endif %}
{% if c.reason %}
{{ c.reason }}
{% endif %}
{% endfor %}
{% endif %} {% endif %} {% if show_logs and log %}
Show logs
{{ log }}
{% endif %} {% if status and status.startswith('Build complete') %} {% if summary %} {% include "partials/deck_summary.html" %} {% endif %} {% endif %}