Author: lukeplant
Date: 2010-09-13 14:43:41 -0500 (Mon, 13 Sep 2010)
New Revision: 13842

Modified:
   django/branches/releases/1.2.X/docs/intro/tutorial02.txt
Log:
[1.2.X] Fixed #12918 - Tutorial page 2 issues

Thanks to Leam for report, cassidy for patch.

Backport of [13841] from trunk

Modified: django/branches/releases/1.2.X/docs/intro/tutorial02.txt
===================================================================
--- django/branches/releases/1.2.X/docs/intro/tutorial02.txt    2010-09-13 
18:39:16 UTC (rev 13841)
+++ django/branches/releases/1.2.X/docs/intro/tutorial02.txt    2010-09-13 
19:43:41 UTC (rev 13842)
@@ -284,7 +284,7 @@
 This tells Django: "Choice objects are edited on the Poll admin page. By
 default, provide enough fields for 3 choices."
 
-Load the "Add poll" page to see how that looks:
+Load the "Add poll" page to see how that looks, you may need to restart your 
development server:
 
 .. image:: _images/admin11t.png
    :alt: Add poll page now has choices on it
@@ -350,7 +350,7 @@
         return self.pub_date.date() == datetime.date.today()
     was_published_today.short_description = 'Published today?'
 
-Let's add another improvement to the Poll change list page: Filters. Add the
+Edit your admin.py file again and add an improvement to the Poll change list 
page: Filters. Add the
 following line to ``PollAdmin``::
 
     list_filter = ['pub_date']

-- 
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.

Reply via email to