From: Matt Culbreth Date: Tue, 18 Jan 2011 19:55:09 +0000 (-0500) Subject: Merge branch 'merge_multiple_paginators' X-Git-Tag: release-2.0~32^2~1 X-Git-Url: https://git.mdrn.pl/django-pagination.git/commitdiff_plain/ef5ff95059866e94e89cad912c30497f90442765?hp=47e7ec874cd7dddda5ed13ffb6993a64dced2537 Merge branch 'merge_multiple_paginators' --- diff --git a/pagination/middleware.py b/pagination/middleware.py index f8a2a6f..676f909 100644 --- a/pagination/middleware.py +++ b/pagination/middleware.py @@ -1,10 +1,10 @@ -def get_page(self): +def get_page(self, suffix): """ A function which will be monkeypatched onto the request to get the current integer representing the current page. """ try: - return int(self.REQUEST['page']) + return int(self.REQUEST['page%s' % suffix]) except (KeyError, ValueError, TypeError): return 1 @@ -14,4 +14,4 @@ class PaginationMiddleware(object): it exists in either **GET** or **POST** portions of the request. """ def process_request(self, request): - request.__class__.page = property(get_page) \ No newline at end of file + request.__class__.page = get_page \ No newline at end of file diff --git a/pagination/templates/pagination/pagination.html b/pagination/templates/pagination/pagination.html index fe566a8..e817b0e 100644 --- a/pagination/templates/pagination/pagination.html +++ b/pagination/templates/pagination/pagination.html @@ -2,7 +2,7 @@ {% load i18n %}