[Fixed]-Django: How to return a user to correct pagination page after editing or updating?

1👍

You need to pass to the editing page the page number you were on, in a query parameter. And keep track of it and when editing/updating is successful you redirect back to that page number.

In your form include a next field. Where to redirect in case of success.

Leave a comment