public-health-ch/publichealth/search/templates/search/search.html

51 lines
1.7 KiB
HTML

{% extends "base.html" %}
{% load static wagtailcore_tags wagtailsearchpromotions_tags %}
{% block body_class %}template-searchresults{% endblock %}
{% block title %}Search{% endblock %}
{% block content %}
<h1>Search</h1>
<form action="{% url 'search' %}" method="get">
<input type="text" name="query"{% if search_query %} value="{{ search_query }}{% endif %}">
<input type="submit" value="Search">
</form>
{% get_search_promotions search_query as search_picks %}
{% if search_picks %}
<ul>
{% for pick in search_picks %}
<li>
<h2><a href="{{ pick.page.url }}">{{ pick.page }}</a></h2>
<p>{{ pick.description }}</p>
</li>
{% endfor %}
</ul>
{% endif %}
{% if search_results %}
<ul>
{% for result in search_results %}
<li>
<h4><a href="{% pageurl result %}">{{ result }}</a></h4>
{% if result.search_description %}
{{ result.search_description|safe }}
{% endif %}
</li>
{% endfor %}
</ul>
{% if search_results.has_previous %}
<a href="{% url 'search' %}?query={{ search_query|urlencode }}&amp;page={{ search_results.previous_page_number }}">Previous</a>
{% endif %}
{% if search_results.has_next %}
<a href="{% url 'search' %}?query={{ search_query|urlencode }}&amp;page={{ search_results.next_page_number }}">Next</a>
{% endif %}
{% elif search_query %}
No results found
{% endif %}
{% endblock %}