I am using django-endless-pagination with its twitter-style pagination. Now i want to paginate over shuffled query set. I have tried to add
return Fact.objects.all().order_by('?')
But then objects can appear more than 1 time.
How can I change this behavior?