{% extends 'base.html' %} {% block title %}Search results{% endblock %} {% block right_sidebar %} {% endblock %} {% block content %}

Search results

{% if count <1 %}

No {{query}} in any interpretation, try another search query.

{% else %} {% for interpretation in interpretations %}
{% if interpretation.user_id != current_user.id %}
{% endif %} {{ interpretation.vote_count }} {% if interpretation.user_id != current_user.id %}
{% endif %}
{% set local_breadcrumbs = interpretation.section.breadcrumbs_path %} {% include 'book/local_breadcrumbs_navigation.html'%}

{{ interpretation.section.label }}

{{ display_inline_elements(interpretation.text)|safe }}

{{interpretation.user.username}} on {{interpretation.created_at.strftime('%B %d, %Y')}}
{% endfor %} {% if page.pages > 1 %}
{% endif %} {% endif %}
{% endblock %}