{% extends 'wrapper.html' %} {% load staticfiles %} {% load i18n %} {% load custom_tags %} {% get_current_language as LANGUAGE_CODE %} {% get_current_language_bidi as RTL %} {% block head_title %}{% trans 'Jochre Search' %}{% endblock %} {% block content %}
{% include "search/search-pane.html" %} {% if parseException %}
{% block searcherror %}

{% trans 'Unable to process query' %}:

{% autoescape off %}{{ parseException }}{% endautoescape %}

{% endblock %}
{% elif not haveSearch %}

{% blocktrans %}Index size: {{ bookCount }} books.{% endblocktrans %}

{% block enterterm %}

{% trans 'Please enter a search term' %}

{% endblock %}
{% elif not haveResults %}
{% block noresults %}

{% trans 'No search results' %}

{% endblock %}
{% else %}
{% if resultCount <= maxResults %} {% blocktrans %}Results found in {{ resultCount }} books.{% endblocktrans %} {% else %} {% blocktrans %}Results found in more than {{ resultCount }} books.{% endblocktrans %} {% endif %} {% blocktrans %}Results {{ start }} to {{ end }}:{% endblocktrans %}
{% trans 'Clear results' %}
{% for result in results %} {% include "search/search-result.html" %} {% endfor %}
{% include "search/pagination.html" %} {% endif %}
{% include "search/word-modal.html" %} {% include "search/keyboard-modal.html" %} {% include "search/preferences-modal.html" %} {% include "search/correct-meta-modal.html" %} {% endblock %}