Fixed #14432 -- Added an import statement which was previously implied in tutorial 3's URLconf to make it as explicit as possible for new users. Thanks to gorus for the report and andrews for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14302 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gabriel Hurley 2010-10-20 21:18:58 +00:00
parent e9d6662f5e
commit d1a632f9f9
1 changed files with 5 additions and 2 deletions

View File

@ -498,9 +498,12 @@ Here's what happens if a user goes to "/polls/34/" in this system:
remaining text -- ``"34/"`` -- to the 'polls.urls' URLconf for
further processing.
Now that we've decoupled that, we need to decouple the 'polls.urls'
Now that we've decoupled that, we need to decouple the ``polls.urls``
URLconf by removing the leading "polls/" from each line, and removing the
lines registering the admin site::
lines registering the admin site. Your ``polls.urls`` file should now look like
this::
from django.conf.urls.defaults import *
urlpatterns = patterns('polls.views',
(r'^$', 'index'),