Event list: Do not carry page through filter form

This commit is contained in:
Raphael Michel
2024-06-19 18:19:51 +02:00
parent 223f095611
commit ce06672334

View File

@@ -8,7 +8,7 @@
<form class="event-list-filter-form" method="get" data-save-scrollpos>
<input type="hidden" name="filtered" value="1">
{% for f, v in request.GET.items %}
{% if f not in filter_form.fields %}
{% if f not in filter_form.fields and f != "page" %}
<input type="hidden" name="{{ f }}" value="{{ v }}">
{% endif %}
{% endfor %}