{% extends 'base.html' %} {% block title %} - All sets{% endblock %} {% block main %} {% if collection | length or use_pagination %}
Search
{% if config['SHOW_SETS_DUPLICATE_FILTER'] %} {% endif %}
{% include 'set/sort.html' %} {% include 'set/filter.html' %} {% if use_pagination %}
{% for item in collection %}
{% with index=loop.index0 %} {% include 'set/card.html' %} {% endwith %}
{% endfor %}
{% if pagination and pagination.total_pages > 1 %}
{% if pagination.has_prev %} Previous {% else %} {% endif %} Page {{ pagination.page }} of {{ pagination.total_pages }} {% if pagination.has_next %} Next {% else %} {% endif %}
{% if pagination.total_count > 0 %} Showing {{ ((pagination.page - 1) * pagination.per_page + 1) }} to {{ [pagination.page * pagination.per_page, pagination.total_count] | min }} of {{ pagination.total_count }} sets {% else %} No sets found {% endif %}
{% endif %}
{% else %}
{% for item in collection %}
{% with index=loop.index0 %} {% include 'set/card.html' %} {% endwith %}
{% endfor %}
{% endif %}
{% else %} {% include 'set/empty.html' %} {% endif %} {% endblock %}