2020-10-15 10:57:20 +00:00
|
|
|
{% extends 'base.html' %}
|
2020-10-15 14:03:08 +00:00
|
|
|
|
|
|
|
{% load crispy_forms_filters i18n %}
|
2020-10-15 10:57:20 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2020-10-15 14:03:08 +00:00
|
|
|
<h2>{% trans "Search" %}</h2>
|
|
|
|
|
|
|
|
<form>
|
|
|
|
{% csrf_token %}
|
|
|
|
{{ form|crispy }}
|
|
|
|
<button type="submit" class="btn btn-primary">{% trans "Search" %}</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
<h3>{% trans "Results" %}</h3>
|
2020-10-15 10:57:20 +00:00
|
|
|
|
2020-10-15 14:03:08 +00:00
|
|
|
<div id="search-results">
|
|
|
|
{% for result in page.object_list %}
|
|
|
|
<p>
|
|
|
|
<a href="{{ result.object.get_absolute_url }}">{{ result.object }}</a>
|
|
|
|
</p>
|
|
|
|
{% empty %}
|
2020-10-15 15:14:25 +00:00
|
|
|
<p>{% trans "No results found." %}</p>
|
2020-10-15 14:03:08 +00:00
|
|
|
{% endfor %}
|
2020-10-15 10:57:20 +00:00
|
|
|
|
2020-10-15 14:03:08 +00:00
|
|
|
{% if page.has_previous or page.has_next %}
|
|
|
|
<div>
|
|
|
|
{% if page.has_previous %}<a href="?q={{ query }}&page={{ page.previous_page_number }}">{% endif %}« Previous{% if page.has_previous %}</a>{% endif %}
|
|
|
|
|
|
|
|
|
{% if page.has_next %}<a href="?q={{ query }}&page={{ page.next_page_number }}">{% endif %}Next »{% if page.has_next %}</a>{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2020-10-15 10:57:20 +00:00
|
|
|
{% endblock %}
|