I wanted the same thing long ago, you have a couple of choices: 1. Use custom SQL functions (but kinda locks u in), 2. Use the python sort function. This basically takes ur queryset, turns it into a list and then sorts it.
Since all querysets are just lists in python you can do this: orderedlist = list(querysetX). orderedlist.sort... or something like that, you'll have to play with the syntax. But you can't use the Order_by on the queryset, because that translates directly into SQL and that's not available. John On Nov 21, 6:56 am, Luke Seelenbinder <[EMAIL PROTECTED]> wrote: > Can I order_by a function within the model? I know you can list them > in the admin inteface, etc. But can you order_by a model function? Or > would you have to write a custom piece of code to do that? > > Thanks, > Luke --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---