Re: Sorting Drop-down fields on Admin site

2008-05-06 Thread Alen Ribic
It actually like this, sorry...to trigger happy today :) class Composer(models.Model): name = models.CharField(max_length=20) class Meta: ordering = ['name'] class Chart(models.Model): composer = models.ForeignKey(Composer) -Alen Ribic On May 6, 9:20 pm, Alen Ribic <[EM

Re: Sorting Drop-down fields on Admin site

2008-05-06 Thread Alen Ribic
*correction: Need probably a comma at the end of the order tuple unless you use a list instead: class Chart(models.Model): composer = models.ForeignKey(Composer) class Meta: ordering = ('composer',) --Alen Ribic On May 6, 9:17 pm, Alen Ribic <[EMAIL PROTECTED]> wrote: > You sh

Re: Sorting Drop-down fields on Admin site

2008-05-06 Thread Alen Ribic
You should be able to do it like so: class Chart(models.Model): composer = models.ForeignKey(Composer) class Meta: ordering = ('composer') Regards, -Alen Ribic PS check out: http://www.djangoproject.com/documentation/models/ordering/ On May 6, 8:48 pm, "Greg Lindstrom" <[EMAI

Sorting Drop-down fields on Admin site

2008-05-06 Thread Greg Lindstrom
Hello- Is there a way to sort the drop down select boxes on the Admin site? I have a class, Chart, which represents a piece of music for my brass quintet library. Each charts has a composer, an arranger and a publisher which are represented by the Composer, Arranger, and Publisher classes. When