1 {% extends "base/base.html" %}
3 {% load pagination_tags %}
4 {% load inline_tag_list from catalogue_tags %}
5 {% load book_searched from search_tags %}
7 {% block titleextra %}{% trans "Search" %}{% endblock %}
9 {% block bodyid %}tagged-object-list{% endblock %}
13 <span class="did_you_mean">{% trans "Did you mean" %}
14 <a href="{% url 'search' %}?q={{did_you_mean|urlencode}}">{{did_you_mean|lower}}</a>?</span>
16 <div class="top-tag-list">
19 {% for author in pd_authors %}
21 {% include "pdcounter/pd_author_box.html" %}
30 <ul class="work-list">
32 <h1>{% trans "Books" %}</h1>
34 {% for result in books %}
35 <li class="Book-item">
36 <div class="search-result">
37 {% book_searched result %}
45 <h1>{% trans "Pictures" %}</h1>
46 <ul class="work-list">
47 {% for result in pictures %}
48 <li class="Picture-item">
49 <div class="search-result">
50 {% with result.picture as picture %}
51 {% include "picture/picture_searched.html" %}