Author: lukeplant
Date: 2010-09-13 13:39:16 -0500 (Mon, 13 Sep 2010)
New Revision: 13841

Modified:
   django/trunk/docs/intro/tutorial02.txt
Log:
Fixed #12918 - Tutorial page 2 issues

Thanks to Leam for report, cassidy for patch.

Modified: django/trunk/docs/intro/tutorial02.txt
===================================================================
--- django/trunk/docs/intro/tutorial02.txt      2010-09-13 05:48:18 UTC (rev 
13840)
+++ django/trunk/docs/intro/tutorial02.txt      2010-09-13 18:39:16 UTC (rev 
13841)
@@ -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