reformat templates
[wolnelektury.git] / src / catalogue / templates / catalogue / search_no_hits.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags pagination_tags %}
4
5 {% block titleextra %}{% trans "Search" %}{% endblock %}
6
7 {% block bodyid %}tagged-object-list{% endblock %}
8
9 {% block body %}
10   <h1>{% trans "Search" %}</h1>
11
12   <div class="left-column">
13     <div class="normal-text">
14       <p>
15         {% if did_you_mean %}
16           <span class="did_you_mean">{% trans "Did you mean" %}
17             <a href="{% url 'search' %}?q={{did_you_mean|urlencode}}">{{did_you_mean|lower}}</a>?</span>
18         {% endif %}
19       </p>
20       <p>{% trans "Sorry! Search cirteria did not match any resources." %}</p>
21
22       <p>{% blocktrans %}Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.
23         As for now we do not support full text search.{% endblocktrans %}</p>
24       {% include "info/join_us.html" %}
25     </div>
26   </div>
27
28   <div class="right-column">
29     {% include "publishing_suggest.html" %}
30   </div>
31 {% endblock %}