{% extends 'layout.html' %} {% load i18n %} {% block title %}{% trans "Search Results" %}{% endblock %} {% block content %} {% with book_results|first as local_results %}
{% blocktrans %}No books found for "{{ query }}"{% endblocktrans %}
{% else %}{% trans "Didn't find what you were looking for?" %}
{% trans "Show results from other catalogues" as button_text %} {% include 'snippets/toggle/open_button.html' with text=button_text small=True controls_text="more-results" %}{% blocktrans %}No users found for "{{ query }}"{% endblocktrans %}
{% endif %}{% blocktrans %}No lists found for "{{ query }}"{% endblocktrans %}
{% endif %} {% for result in list_results %} {% endfor %}