[Django]-Can Django Paginator start with last page and page backwards?

4👍

You can get the number of pages in paginator and set the current page to the last page num:

page = request.GET('page')
if not page:
    page = paginator.num_pages

Leave a comment