Skip to content

Instantly share code, notes, and snippets.

@qoelet
Created October 10, 2011 02:34
Show Gist options
  • Save qoelet/1274517 to your computer and use it in GitHub Desktop.
Save qoelet/1274517 to your computer and use it in GitHub Desktop.
# within the template, the sort doesn't work.
myField = forms.ModelChoiceField(myModel.objects.all().order_by('name'), empty_label="please select an option")
# but this works.
myField = forms.ModelChoiceField(myModel.objects.order_by('name'), empty_label="please select an option")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment