-{% spaceless %}
- {% load i18n %}
- {% load inline_tag_list from catalogue_tags %}
- {% load ssi_include from ssify %}
- {% load cache %}
-
- <div class="search-result">
- {% cache 86400 catalogue_book_short book.pk %}
- {% include 'catalogue/book_short.html' %}
- {% endcache %}
+{% extends "catalogue/book_short.html" %}
+{% load inline_tag_list from catalogue_tags %}
+{% block right-column %}
+ <div class="book-right-column">
<div class="snippets">
{% for hit in hits %}
{% if hit.snippet %}
{% if hit.snippet %}
{{hit.snippet|safe}}
{% else %}
- {{hit.fragment.text|truncatewords_html:15|safe}} {# bad, now impossible #}
+ {{hit.fragment.text|truncatewords_html:15|safe}}
{% endif %}
</a>
</div>
{% endif %}
{% endfor %}
</div>
-
- <div style="clear: right"></div>
+ {% include 'catalogue/snippets/jplayer.html' %}
</div>
-{% endspaceless %}
\ No newline at end of file
+{% endblock %}