{% extends 'scipost/base.html' %} {% load bootstrap %} {% load extra_form_widgets %} {% block pagetitle %} search{% if form.q.value %}: {{ form.q.value }}{% endif %}{% endblock pagetitle %} {% block breadcrumb %} {% endblock %} {% block content %}

Filter

{{ form.q.help_text }}
{{ form.models|checkboxes_as_btn }}
{{ form.start }}
{{ form.end }}

Search results{% if results_count and query %} ({{ results_count }} found){% endif %}

{# without this logic, an request without GET parameters would return *all* objects indexed by Haystack #} {% if query %} {% else %}

Your search query did not return any result.

{% endif %}
{% endblock content %}