{% extends "base.html" %} {% block title %} {{ title }} {% endblock %} {% block content %}
{% include search-form-template %}
{% if length-isbns-not-found > 0 %} Nous n'avons pas trouvé ces ISBNs en stock: {% for isbn in isbns-not-found %}

{{ isbn }}

{% endfor %}
{% endif %}
{% if no-results %}
Aucun résultat !
{% if query-length >= 2 %}
Essayez avec moins de termes de recherche ou dans un ordre différent.
{% endif %} {% endif %} {% for card in cards %} {% include "component-card.html" %} {% endfor %}
{% if pagination %} {% include "includes/pagination.html" :pagination pagination %} {% endif %}
{% endblock %}