﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
10784	list_editable will not work for the default ordering field.	andrepleblanc@…	nobody	"specifying a DateField as list_editable AND in the ordering of a model's Meta causes an error message stating 'Please correct the errors below' but doesn't list any errors.

eg.
{{{
#!python
class TestModel(models.Model):
    name = models.CharField(max_length=40)
    birthdate = models.DateField(null=True, blank=True)
    class Meta:
        ordering = ('birthdate',)

class TestModelAdmin(admin.ModelAdmin):
    list_display = ('name', 'birthdate')
    list_editable = ('birthdate', )
}}}
the birthdate field cannot actually be edited on the change list, it just shows that unhelpful message.  Not sure if this applies to all Field types or not, but definitely DateFields.
"		new	contrib.admin	dev					Unreviewed	0	0	0	0	0	0
