On 5/22/06, Douglas Campos <[EMAIL PROTECTED]> wrote:
> i have a model formed by :
> vendor =  foreign key
> name, ver, rev, etc
>
> how can i order by vendor first?
> ordering = [ 'vendor', 'name' ] fails
>
> any ideas?

Ordering by a foreign key isn't technically supported at this point,
but you can fake it. Instead of 'vendor' try 'appname_vendor.name'
where 'appname_vendor' is the name of the vendor table in your
database and 'name' is the name of the column you want to sort by.
This worked last time a checked (a few weeks ago), but no promises.
You'll probably have to add the list_select_related = True option to
your inner Admin class as well. list_select_related is documented in
the model-api docs on djangoproject.com if you want to learn more
about it.

Joseph

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

Reply via email to