mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2025-02-06 12:53:03 +00:00
Search bar is on navbar, don't add one other is results page
This commit is contained in:
parent
f2cc5fb6cd
commit
11ebc6848b
@ -1,39 +1,22 @@
|
|||||||
{% extends 'base.html' %}
|
{% extends 'base.html' %}
|
||||||
|
{% load crispy_forms_filters %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h2>Search</h2>
|
<h3>Results</h3>
|
||||||
|
|
||||||
<form method="get" action=".">
|
{% for result in page.object_list %}
|
||||||
<table>
|
<p>
|
||||||
{{ form.as_table }}
|
<a href="{{ result.object.get_absolute_url }}">{{ result.object }}</a>
|
||||||
<tr>
|
</p>
|
||||||
<td> </td>
|
{% empty %}
|
||||||
<td>
|
<p>No results found.</p>
|
||||||
<input type="submit" value="Search">
|
{% endfor %}
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
{% if query %}
|
{% if page.has_previous or page.has_next %}
|
||||||
<h3>Results</h3>
|
<div>
|
||||||
|
{% if page.has_previous %}<a href="?q={{ query }}&page={{ page.previous_page_number }}">{% endif %}« Previous{% if page.has_previous %}</a>{% endif %}
|
||||||
{% for result in page.object_list %}
|
|
|
||||||
<p>
|
{% if page.has_next %}<a href="?q={{ query }}&page={{ page.next_page_number }}">{% endif %}Next »{% if page.has_next %}</a>{% endif %}
|
||||||
<a href="{{ result.object.get_absolute_url }}">{{ result.text }}</a>
|
</div>
|
||||||
</p>
|
{% endif %}
|
||||||
{% empty %}
|
|
||||||
<p>No results found.</p>
|
|
||||||
{% endfor %}
|
|
||||||
|
|
||||||
{% 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 %}
|
|
||||||
{% else %}
|
|
||||||
{# Show some example queries to run, maybe query syntax, something else? #}
|
|
||||||
{% endif %}
|
|
||||||
</form>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
Loading…
x
Reference in New Issue
Block a user