{% extends "base.html" %} {% block content %}

Card Browser

Browse all {{ total_cards }} cards with filters and search.

{# Error message #} {% if error %}
{{ error }}
{% endif %} {# Filters Panel #}
{# Keyboard shortcuts help button (desktop only) #} {# Shortcuts help tooltip #} {# Search bar #}
{% if search %} {% endif %}
{# Filter controls #}
{# Multi-select theme filter #}
{# Selected themes as chips #}
{% if themes %} {% for t in themes %} {{ t }} {% endfor %} {% endif %}
{# Autocomplete input #}
{# Color filter #} {% if all_colors %} {% endif %} {# Type filter #} {% if all_types %} {% endif %} {# Rarity filter #} {% if all_rarities %} {% endif %} {# Sort dropdown #}
{# Advanced filters row #}
{# CMC range filter #}
{# Power range filter #}
{# Toughness range filter #}
{# Results info bar with page indicator #}
{% if filtered_count is defined and filtered_count != total_cards %} Showing {{ cards|length }} of {{ filtered_count }} filtered cards ({{ total_cards }} total) {% else %} Showing {{ cards|length }} of {{ total_cards }} cards {% endif %} {% if search %} matching "{{ search }}"{% endif %}
{# Card grid container or no results message #} {% if cards and cards|length %}
800 %}data-virtualize="1"{% endif %}>
{% for card in cards %} {% include "browse/cards/_card_tile.html" %} {% endfor %}
{# Pagination controls #} {% if has_next %}
Loading...
{% endif %} {% else %} {# No results message with helpful info #}
No cards found
{% if search or color or card_type or rarity or theme or cmc_min or cmc_max %} No cards match your current filters. {% if search %}Try a different search term{% endif %}{% if search and (color or card_type or rarity or theme or cmc_min or cmc_max) %} or {% endif %}{% if color or card_type or rarity or theme or cmc_min or cmc_max %}adjust your filters{% endif %}. {% else %} Unable to load cards. Please try refreshing the page. {% endif %}
{% if search or color or card_type or rarity or theme or cmc_min or cmc_max %}
Active filters: {% if search %} Search: "{{ search }}" {% endif %} {% if theme %} Theme: {{ theme }} {% endif %} {% if color %} Color: {{ color }} {% endif %} {% if card_type %} Type: {{ card_type }} {% endif %} {% if rarity %} Rarity: {{ rarity|title }} {% endif %} {% if cmc_min or cmc_max %} CMC: {% if cmc_min %}{{ cmc_min }}{% else %}0{% endif %}–{% if cmc_max %}{{ cmc_max }}{% else %}16+{% endif %} {% endif %}

Clear All Filters

{% endif %}
{% endif %}
{% endblock %}