{% extends "library/base.html" %}{% load i18n %}{% load molly_utils %}{% load molly_external_media %} {% block content %} {% if error_message %}

{% trans "There was an error with your search" %}

{{ error_message }}

{% endif %} {% if search_form %}{% include "library/search_form.html" %}{% endif %} {% if page %}

{% trans "Result list" %} ({% trans "unsorted" %})

{% if removed %}
{% blocktrans count removed|length as num_removed %}The following common word was not included in your query:{% plural %}The following common words were not included in your query:{% endblocktrans %} {% for w in removed %}{% if forloop.last %}{% if not forloop.first %}and {% endif %}{{ w }}{% else %}{{ w }}, {% endif %}{% endfor %}
{% endif %}
{% if page.has_previous %} {% endif %} {% blocktrans with page.start_index as first_result and page.end_index as last_result and results.object_list|length as num_results and page.number as page_number and results.num_pages as number_of_pages %}Showing results {{ first_result }} to {{ last_result }} of {{ num_results }}. Page {{ page_number }} of {{ number_of_pages }}.{% endblocktrans %} {% if page.has_next %} {% endif %}
{% endif %} {% endblock %}