Search - some tests, change in SearchResults cleaning.
[wolnelektury.git] / wolnelektury / templates / catalogue / search_multiple_hits.html
index 414dcfd..0d3e700 100644 (file)
       <li>
        <p><a href="{{result.book.get_absolute_url}}">{{result.book.pretty_title}}</a> (id: {{result.book_id}}, score: {{result.score}})</p>
        <ul>
-         {% for hit in result.process_hits %}
+         {% for hit in result.hits %}
          <li>
            {% if hit.fragment %}
            <a href="{{hit.fragment.get_absolute_url}}">Idź do fragmentu</a>
            <div style="">Tagi/Motywy: {% for tag in hit.themes %}{{tag.name}} {% endfor %}</div>
+           {# snippets or short html? #}
+           {% if hit.snippets %}
+            {% for snip in hit.snippets %}
+              {{snip|safe}}<br/>
+            {% endfor %}
+           {% else %}
+            {{hit.fragment.short_text|safe}}
+           {% endif %}
+           
+           {% else %}
+           {# it's a section #}
+            {% if hit.snippets %}
+             {% for snip in hit.snippets %}
+               {{snip|safe}}<br/>
+             {% endfor %}
+            {% else %}
+              [section matched but no snippets :-(]
+            {% endif %}
            {% endif %}
-           {% for snip in hit.snippets %}
-             {{snip|safe}}<br/>
-           {% endfor %}
          </li>
          {% endfor %}