is there a way to paginate a rawqueryset using django’s inbuilt pagination?
when i cast it to a list , it throws an error in my face …TypeError: expected string or Unicode object, NoneType found. Is there a way around this?
is there a way to paginate a rawqueryset using django’s inbuilt pagination? when i
Share
I managed to achieve it using the following:
The code in django.core.paginator.py:
len on a raw_queryset doesn’t work but converting the actual paginator object to a list works find for me in Django 1.3