django-paging
django-paging copied to clipboard
Sexy pagination in Django
It looks from the docs like you do "per_page 25 is_endless False", but there's no reference to the "is_endless" name in the django template-sugar definition. Its just the variable: ```...
In the tests, unittest2 is imported. unittest2 shouldn't be a required package since users of python 2.7 don't need it. Typical methods of importing unittest2 include: ``` try: # check...
I just started writing Django apps, this will be my first addon. Could you include the installation steps? I ran python setup.py but I'm sure there's more I need to...
django-paging 0.2.3 added "django" to its list of dependencies in its setup.py. It should be "Django", not "django". This caused a problem for me lately, exposing an obscure bug in...
The paging template should use divs and spans in order to be more portable. This is a good example: http://code.google.com/p/django-pagination/source/browse/trunk/pagination/templates/pagination/pagination.html
Function paginate is defined like def paginate(request, queryset_or_list, per_page=25, endless=True): But in paging_extras it is used only with 3 parameters, so all my paging are endless. Is it desirable behaviour...
warning: no previously-included files matching '*~' found anywhere in distribution File "build/bdist.linux-x86_64/egg/paging/tests.py", line 18 self.assertEquals(page['previous_page'], num - 1 if num else False) ^ SyntaxError: invalid syntax File "/usr/lib/python2.4/site-packages/django_paging-0.2.2-py2.4.egg/paging/tests.py", line 18...