{% extends 'storefront/section_base.html' %} {% load i18n %} {% block section_content %} {% if featured_listings or bpc_listings %} {% trans "Search blueprints…" as search_placeholder %} {% if view == 'table' %}
{% include 'storefront/_section_toolbar.html' with search_placeholder=search_placeholder search_width="sm:w-[calc(33.333%_-_0.5rem)]" table_search=True %}
{% include 'storefront/_bpc_table.html' %}
{% else %} {% include 'storefront/_section_toolbar.html' with search_placeholder=search_placeholder search_width="sm:w-[calc(33.333%_-_0.5rem)]" %} {% if featured_listings %}
{% for listing in featured_listings %}
{{ listing.eve_type.name }}

{{ listing.eve_type.name }}

{% if listing.from_per_run_display == 'Ask' %}{% trans "Ask" %}{% else %}{% trans "from" %} {{ listing.from_per_run_display }}{% endif %}

{{ listing.variant_count }} {% trans "var" %}
{% endfor %}
{% endif %} {% if bpc_listings %}
{% for listing in bpc_listings %} {{ listing.eve_type.name }}

{{ listing.eve_type.name }}

{% if listing.from_per_run_display == 'Ask' %}{% trans "Ask" %}{% else %}{% trans "from" %} {{ listing.from_per_run_display }}{% endif %}

{{ listing.variant_count }} {% trans "var" %}
{% endfor %}
{% endif %} {% endif %} {% else %}
{% trans "No blueprint copies listed yet." %}
{% endif %} {% endblock %}