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 [email protected] 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 -~----------~----~----~----~------~----~------~--~---

