Currently the pagination code only looks for the context['request'].page
variable to decide which page to show. The only way to programmatically force
another page to display is the following:
get = request.GET.copy()
get['page'] = pagenum
request.GET = get
Before adding the request object to the context. This should be made easier,
for example by having an extra optional parameter to autopaginate template tag.
Original issue reported on code.google.com by aigar...@gmail.com on 14 Mar 2012 at 8:50
Original issue reported on code.google.com by
aigar...@gmail.com
on 14 Mar 2012 at 8:50