{% extends 'base.html' %} {% block title %} - {% if delete %}Delete a set{% else %}Set{% endif %} {{ item.fields.name}} ({{ item.fields.set }}){% endblock %} {% block main %}
{% if all_instances and all_instances | length > 1 %}
{% set current_item_id = item.fields.id %} {% for instance in all_instances %}
{% with item=instance, index=loop.index0, tiny=false, current_viewing=(instance.fields.id == current_item_id) %}
{% include 'set/card.html' %}
{% endwith %}
{% endfor %}
{% with solo=true, delete=delete %} {% include 'set/card.html' %} {% endwith %} {% else %} {% with solo=true, delete=delete %} {% include 'set/card.html' %} {% endwith %} {% endif %}
{% endblock %}