Changes between Initial Version and Version 2 of Ticket #10784


Ignore:
Timestamp:
Apr 10, 2009, 4:03:57 PM (15 years ago)
Author:
Alex Gaynor
Comment:

Please use preview

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #10784 – Description

    initial v2  
    22
    33eg.
    4 
     4{{{
    55class TestModel(models.Model):
    66    name = models.CharField(max_length=40)
     
    1212    list_display = ('name', 'birthdate')
    1313    list_editable = ('birthdate', )
    14 
     14}}}
    1515the 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.
Back to Top