Skip to content

Commit

Permalink
Fixed #1033 -- pagination in object_list generic views now use 1-inde…
Browse files Browse the repository at this point in the history
…xed page numbers in the URL. Thanks, Tom Tobin.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2426 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
jacobian committed Feb 27, 2006
1 parent 47f040d commit da310cf
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions django/views/generic/list_detail.py
Expand Up @@ -39,22 +39,22 @@ def object_list(request, app_label, module_name, paginate_by=None, allow_empty=F
lookup_kwargs = extra_lookup_kwargs.copy()
if paginate_by:
paginator = ObjectPaginator(mod, lookup_kwargs, paginate_by)
page = request.GET.get('page', 0)
page = request.GET.get('page', 1)
try:
object_list = paginator.get_page(page)
except InvalidPage:
if page == 0 and allow_empty:
page = int(page)
object_list = paginator.get_page(page - 1)
except (InvalidPage, ValueError):
if page == 1 and allow_empty:
object_list = []
else:
raise Http404
page = int(page)
c = DjangoContext(request, {
'object_list': object_list,
'is_paginated': paginator.pages > 1,
'results_per_page': paginate_by,
'has_next': paginator.has_next_page(page),
'has_previous': paginator.has_previous_page(page),
'page': page + 1,
'has_next': paginator.has_next_page(page - 1),
'has_previous': paginator.has_previous_page(page - 1),
'page': page,
'next': page + 1,
'previous': page - 1,
'pages': paginator.pages,
Expand Down

0 comments on commit da310cf

Please sign in to comment.