Re: Ordering of ManyToManyField using a field of the intermediate table

2009-06-30 Thread Luke Plant
On Tuesday 30 June 2009 09:34:19 Alex Rades wrote: > Hi, > I've also asked on the users ml but got no anwser. Maybe you can > undestand the question better? Please don't do that - the developers' list and the users' list have distinct purposes, and the fact that you didn't get an answer on the

Ordering of ManyToManyField using a field of the intermediate table

2009-06-30 Thread Alex Rades
Hi, I've also asked on the users ml but got no anwser. Maybe you can undestand the question better? Hi, I have a couple of models like: class Album(models.Model): title = models.CharField(max_length=255) class Image(models.Model): image = models.ImageField(upload_to='images/') albums =