1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

#6372: Updating “per page” count does not refresh list

This commit is contained in:
checktheroads
2021-05-07 16:30:13 -07:00
parent 8c67c7efb3
commit 32e1d7e879
4 changed files with 17 additions and 3 deletions

View File

@@ -35,7 +35,7 @@
{% endif %}
{% endfor %}
<div class="input-group input-group-sm">
<select name="per_page" class="form-select" id="per_page">
<select name="per_page" class="form-select per-page">
{% for n in settings.PER_PAGE_DEFAULTS %}
<option value="{{ n }}"{% if page.paginator.per_page == n %} selected="selected"{% endif %}>{{ n }}</option>
{% endfor %}