1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-06-21 21:58:23 +02:00

Protect search page to be read from non-admin users

This commit is contained in:
Yohann D'ANELLO
2020-10-15 21:07:18 +02:00
parent 144577bd89
commit 2a9e0f2692
4 changed files with 48 additions and 29 deletions

View File

@ -16,7 +16,7 @@
<h3>{% trans "Results" %}</h3>
<div id="search-results">
{% regroup page.object_list by model_name as categories %}
{% regroup object_list by model_name as categories %}
{% for category in categories %}
<h4>{% trans category.grouper|capfirst %}</h4>
{% with table=category.list|search_table %}
@ -25,13 +25,5 @@
{% empty %}
<p>{% trans "No results found." %}</p>
{% endfor %}
{% if page.has_previous or page.has_next %}
<div>
{% if page.has_previous %}<a href="?q={{ query }}&amp;page={{ page.previous_page_number }}">{% endif %}&laquo; Previous{% if page.has_previous %}</a>{% endif %}
|
{% if page.has_next %}<a href="?q={{ query }}&amp;page={{ page.next_page_number }}">{% endif %}Next &raquo;{% if page.has_next %}</a>{% endif %}
</div>
{% endif %}
</div>
{% endblock %}