Skip to content

Commit

Permalink
Fix pagination does not work on history page (#378)
Browse files Browse the repository at this point in the history
Set form_id parameter to ensure pagination is finding the correct form
to submit.
  • Loading branch information
kofrezo authored Sep 11, 2024
1 parent c36baa7 commit 1752b07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion serveradmin/serverdb/templates/serverdb/history.html
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ <h3>History for {{ name }}</h3>
</div>
<div class="row">
<div class="col-md-12">
{% include "pagination.html" with page=changes form=True %}
{% include "pagination.html" with page=changes form=True form_id="changes-form" %}
</div>
</div>
</form>
Expand Down

0 comments on commit 1752b07

Please sign in to comment.