Opened 8 years ago
Last modified 8 years ago
#28032 closed Cleanup/optimization
Abstract away pagination boilerplate — at Initial Version
Description ¶
In the documentation for pagination, we recommend using this boilerplate:
try: contacts = paginator.page(page) except PageNotAnInteger: # If page is not an integer, deliver first page. contacts = paginator.page(1) except EmptyPage: # If page is out of range (e.g. 9999), deliver last page of results. contacts = paginator.page(paginator.num_pages)
This could be abstracted away into a simple method on the {{{Paginator}}} class, perhaps named something like results_for_page
.
Note:
See TracTickets
for help on using tickets.