I have query:
items = MyModel.objects.all().order_by(\'nr\')[:10]
and I get 10 items with higher number. Now I have to mix these results. H
Curiously, this not very well documented feature works:
Country.objects.order_by('?')
source: http://www.jpstacey.info/blog/2008/09/03/random-ordering-of-query-results-in-django
Astonishingly, the existing documentation has very little Google juice, unless you search for "randomly" rather than "random".