I had a similar need based on a calculated column, you'll have to turn
it into a list (i.e. mylist = list(queryset) ) and then sort from
there.  You can still pass the list to a template a loop through it
just like a regular queryset, since the objects in the list are just
python objects.

J

On Nov 6, 11:58 am, dexter <[EMAIL PROTECTED]> wrote:
> I have a queryset which I have looped thru and added a (temporary)
> data attribute to each instance. Now I would like to order the
> queryset by the value of the data attributes. If I do it like this:
>
> sorted(queryset, key=lambda x: x.data_attr)
>
> the queryset turns into a list and I can't use it like a queryset
> anymore = not good!
> How can i solve this?
--~--~---------~--~----~------------~-------~--~----~
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