We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34a16f6 commit 52f3a83Copy full SHA for 52f3a83
templates/misc/pagination.part.html
@@ -28,9 +28,11 @@
28
<a href="#pagination-{{ position }}" class="open-modal">…</a>
29
<form action="." method="get" class="modal modal-small" id="pagination-{{ position }}" data-modal-title="Aller à la page…">
30
{% for key,val in request.GET.iterlists %}
31
- {% for v in val %}
32
- <input type="hidden" name="{{ key }}" value="{{ v }}">
33
- {% endfor %}
+ {% if key is not "page" %}
+ {% for v in val %}
+ <input type="hidden" name="{{ key }}" value="{{ v }}">
34
+ {% endfor %}
35
+ {% endif %}
36
{% endfor %}
37
<p>
38
Indiquez la page à laquelle vous souhaitez vous rendre.
0 commit comments