* fixes bug on rendering table rpp selection due to changed behaviour of Django's querystring template tag on recent version upgrade
This commit is contained in:
2026-05-10 11:39:54 +02:00
parent d65f60c07c
commit 9632e59456

View File

@@ -70,7 +70,7 @@
</div> </div>
<div class="dropdown-menu dropdown-menu-right"> <div class="dropdown-menu dropdown-menu-right">
{% for rpp_option in table.results_per_page_choices %} {% for rpp_option in table.results_per_page_choices %}
<a class="dropdown-item {% if table.results_per_page_chosen == rpp_option %}selected{% endif %}" href="{% querystring table.results_per_page_parameter=rpp_option %}"> <a class="dropdown-item {% if table.results_per_page_chosen == rpp_option %}selected{% endif %}" href="{% querystring %}&{{ table.results_per_page_parameter}}={{rpp_option }}">
{{ rpp_option }} {{ rpp_option }}
</a> </a>
{% endfor %} {% endfor %}