{% 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 %}
{% if page.has_previous %}
{% trans "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 %}
{% trans "Next" %}
{% endif %}