{% extends "bootstrap/base.html" %} {% import "bootstrap/fixes.html" as fixes %} {% block styles %} {{ super() }} {% endblock styles %} {% block content %}

{%trans%}Search results{%endtrans%}

{% trans num = books|length%}{{num}} result was found for{%pluralize%}{{num}} results were found for{% endtrans %} {{ query }}

{% if not books %} {%trans%}Sorry, no books matching your query{%endtrans%} {% else %}
{% for b in books %}
{% endfor %}
{% endif %}
{% endblock content %}