X-Git-Url: https://git.mdrn.pl/django-pagination.git/blobdiff_plain/14cf29d545144a9b5c5940aa11797b166c5a8f54..fbc082c4e7ebf4f9a56e5792460edfa78ab9b878:/pagination/middleware.py diff --git a/pagination/middleware.py b/pagination/middleware.py index 8a541fb..dd69377 100644 --- a/pagination/middleware.py +++ b/pagination/middleware.py @@ -1,4 +1,8 @@ class PaginationMiddleware(object): + """ + Inserts a variable representing the current page onto the request object if + it exists in either **GET** or **POST** portions of the request. + """ def process_request(self, request): try: request.page = int(request['page'])