Forgive me if I'm mis-understanding you here, but to sort the select box of your ingredients you can add an 'ordering' to your ingredients model, like so...
class Ingredient(models.Model) name = models.CharField() ... class Meta: ordering = ['name'] Which will sort the Ingredients in the Admin list, and in any related select boxes for that model by the field 'name'. Jay markguy wrote: > While I'm deep in the midst of this problem, I can't tell from the docs > how to sort the select box for ingredients and that would be very handy > to know as well. > > Thanks! > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---