Changes between Initial Version and Version 2 of Ticket #10784
- Timestamp:
- Apr 10, 2009, 4:03:57 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10784 – Description
initial v2 2 2 3 3 eg. 4 4 {{{ 5 5 class TestModel(models.Model): 6 6 name = models.CharField(max_length=40) … … 12 12 list_display = ('name', 'birthdate') 13 13 list_editable = ('birthdate', ) 14 14 }}} 15 15 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.