from django import template
register = template.Library()
@register.inclusion_tag('pagination.html')
def pagination(page, begin_pages=2, end_pages=2, before_current_pages=4, after_current_pages=4):
# Digg-like pages
before = max(page.number - before_current_pages - 1, 0)
after = page.number + after_current_pages
begin = page.paginator.page_range[:begin_pages]
middle = page.paginator.page_range[before:after]
end = page.paginator.page_range[-end_pages:]
last_page_number = end[-1]
def collides(firstlist, secondlist):
""" Returns true if lists collides (have same entries)
>>> collides([1,2,3,4],[3,4,5,6,7])
True
>>> collides([1,2,3,4],[5,6,7])
False
"""
return any(item in secondlist for item in firstlist)
# If middle and end has same entries, then end is what we want
if collides(middle, end):
end = range(max(last_page_number - before_current_pages - after_current_pages, 1), last_page_number+1)
middle = []
# If begin and middle ranges has same entries, then begin is what we want
if collides(begin, middle):
begin = range(1, min(before_current_pages + after_current_pages, last_page_number)+1)
middle = []
# If begin and end has same entries then begin is what we want
if collides(begin, end):
begin = range(1, last_page_number+1)
end = []
return {'page' : page,
'begin' : begin,
'middle' : middle,
'end' : end}
Comments
What differences between your code and django_pagination app?
http://code.google.com/p/django-pagination/
#
IMHO, this code have some bad logic, I replaced line 28 with:
and line 33 with:
Without those two changes, one can't access (in some cases) all pages with using only generated links
#
This is very much in use, and I would like to know when it fails if it fails...
But note that it is intended to drop entries if there are too many. When user selects entry from closer it will show the next entries, so they are not really gone.
#
Thanks for the snippet. I found stalker's patch to be useful, and I changed the code somewhat to make the full context of the tag's use available from within the template.
New version posted as snippet 2199.
#