39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{% load static wagtailcore_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" class="button">
|
|
</form>
|
|
|
|
{% 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 }}
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% if search_results.has_previous %}
|
|
<a href="{% url 'search' %}?query={{ search_query|urlencode }}&page={{ search_results.previous_page_number }}">Previous</a>
|
|
{% endif %}
|
|
|
|
{% if search_results.has_next %}
|
|
<a href="{% url 'search' %}?query={{ search_query|urlencode }}&page={{ search_results.next_page_number }}">Next</a>
|
|
{% endif %}
|
|
{% elif search_query %}
|
|
No results found
|
|
{% endif %}
|
|
{% endblock %}
|