Author: brosner
Date: 2008-07-19 10:51:48 -0500 (Sat, 19 Jul 2008)
New Revision: 7984
Modified:
django/trunk/docs/tutorial02.txt
Log:
Fixed #7838 -- Corrected an invalid class name the 'classes' usage in the
tutorial. Thanks kratorius for catching this.
Modified: django/trunk/docs/tutorial02.txt
===================================================================
--- django/trunk/docs/tutorial02.txt 2008-07-19 15:37:28 UTC (rev 7983)
+++ django/trunk/docs/tutorial02.txt 2008-07-19 15:51:48 UTC (rev 7984)
@@ -192,7 +192,7 @@
class PollAdmin(admin.ModelAdmin):
fieldsets = [
(None, {'fields': ['question']}),
- ('Date information', {'fields': ['pub_date'], 'classes':
['pub_date']}),
+ ('Date information', {'fields': ['pub_date'], 'classes':
['collapse']}),
]
.. image:: http://media.djangoproject.com/img/doc/tutorial-trunk/admin09.png
@@ -242,7 +242,7 @@
class PollAdmin(admin.ModelAdmin):
fieldsets = [
(None, {'fields': ['question']}),
- ('Date information', {'fields': ['pub_date'], 'classes':
['pub_date']}),
+ ('Date information', {'fields': ['pub_date'], 'classes':
['collapse']}),
]
inlines = [ChoiceInline]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---