hi, problem is that i want to order model instances for an attribute and slice it. then sort list randomly.
>>query=order_by("date")[:20] >>query.order_by("?") returns an error because query set has been sliced >>query=order_by("date")[:100] >>random.shuffle(query) also returns error bacuse query set doesn't behave like a list and doesn't support item assignment. dirty solution was creating a list contains model instances by putting query in a for loop then shuffle it. is there any alternative solution. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---