Worked like a charm...

Thanks!

>
>> coupon_items = Item.objects.all()[:25]
>> random.shuffle(coupon_items)
>>
>> doesn't word because a QuerySet object does not support item
>> assignment, which is used by random.shuffle.
>
> You might be able to cast the queryset as a list and then use
> random.shuffle:
>
>   coupon_items = list(Item.objects.all()[:25])
>   random.shuffle(coupon_items)
>
> -tim


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to