From 92a1a772e0ea5c7d0e370634bae94eb155ed8195 Mon Sep 17 00:00:00 2001 From: Florian Schlachter Date: Wed, 22 Apr 2009 15:25:23 +0200 Subject: [PATCH] Added support for multiple paginations on the same template. --- pagination/middleware.py | 6 ++-- .../templates/pagination/pagination.html | 6 ++-- pagination/templatetags/pagination_tags.py | 30 ++++++++++++++----- pagination/tests.py | 12 ++++++-- 4 files changed, 39 insertions(+), 15 deletions(-) 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 37cef40..c2fb72d 100644 --- a/pagination/templates/pagination/pagination.html +++ b/pagination/templates/pagination/pagination.html @@ -2,7 +2,7 @@ {% load i18n %}