say I have the following classes:

class Foo(models.Model):
     name = models.CharField(max_length=30)
     number = models.PositiveSmallIntegerField()

     def __unicode__(self):
         return u"%s(%d)" % (self.name, self.number)

     class Meta:
         ordering = ['name',]

class FooCollection(models.Model):
     name = models.CharField(max_length=30)
     foos = models.ManyToManyField(Foo)

     def __unicode__(self):
         return name

When code looks at Foo objects, the expected ordering is by name. But 
when a FooCollection returns its Foo objects I would like them to be 
ordered by their number, not their name.

My first instinct was a custom Manager but I do not know how to specify 
the manager for ManyToMany relations.

Suggestions?

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