On Sun, 2008-11-30 at 13:15 +0100, Alfredo Alessandrini wrote:
> Hi,
> 
> I've this model:
> 
> class Player(models.Model):
>     user = models.ForeignKey(User, blank=True, null=True)
>     country = models.ForeignKey(Country)
> 
> If I try to ordering Player by "user", don' work:
> 
> Player.objects.order_by("user")

What do you mean "doesn't work"? That line should work without any
problems. It will order by the primary key value of the User model (not
particularly useful, but it still works as advertised).

> I want ordering Player by user.username....

So use Player.objects.order_by("user__username")

This is all documented, with examples, in the order_by() documentation:
http://docs.djangoproject.com/en/dev/ref/models/querysets/#order-by-fields

Regards,
Malcolm



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