Changes between Version 2 and Version 3 of Ticket #10784


Ignore:
Timestamp:
Apr 14, 2009, 11:23:07 AM (15 years ago)
Author:
Alex Gaynor
Comment:

I'm unable to reproduce with:

class Article(models.Model):
    title = models.CharField(max_length=100)
    pubdate = models.DateField()

    class Meta:
        ordering = ('pubdate',)

class ArticleAdmin(admin.ModelAdmin):
    list_display = ('title', 'pubdate',)
    list_editable = ('pubdate',)

I'm going to close as worksforme now, if somehow can provide additional information to reproduce it or a testcase for Django's tests feel free to reopen.

Legend:

Unmodified
Added
Removed
Modified
Back to Top