Fixed #6846 -- Fixed first_on_page and last_on_page in list_detail generic

view. Thanks, trevor.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@7352 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2008-03-23 05:45:59 +00:00
parent f3b48a21fb
commit 0fea1348d6
1 changed files with 2 additions and 2 deletions

View File

@ -74,8 +74,8 @@ def object_list(request, queryset, paginate_by=None, page=None,
'page': page_obj.number,
'next': page_obj.next_page_number(),
'previous': page_obj.previous_page_number(),
'last_on_page': page_obj.start_index(),
'first_on_page': page_obj.end_index(),
'first_on_page': page_obj.start_index(),
'last_on_page': page_obj.end_index(),
'pages': paginator.num_pages,
'hits': paginator.count,
'page_range': paginator.page_range,