Django

Code

Changeset 7984

Show
Ignore:
Timestamp:
07/19/08 10:51:48 (4 months ago)
Author:
brosner
Message:

Fixed #7838 -- Corrected an invalid class name the 'classes' usage in the tutorial. Thanks kratorius for catching this.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/tutorial02.txt

    r7983 r7984  
    193193            fieldsets = [ 
    194194                (None,               {'fields': ['question']}), 
    195                 ('Date information', {'fields': ['pub_date'], 'classes': ['pub_date']}), 
     195                ('Date information', {'fields': ['pub_date'], 'classes': ['collapse']}), 
    196196            ] 
    197197 
     
    243243        fieldsets = [ 
    244244            (None,               {'fields': ['question']}), 
    245             ('Date information', {'fields': ['pub_date'], 'classes': ['pub_date']}), 
     245            ('Date information', {'fields': ['pub_date'], 'classes': ['collapse']}), 
    246246        ] 
    247247        inlines = [ChoiceInline]