Ticket #14432: tutorial03.patch
File tutorial03.patch, 488 bytes (added by , 14 years ago) |
---|
-
docs/intro/tutorial03.txt
502 502 URLconf by removing the leading "polls/" from each line, and removing the 503 503 lines registering the admin site:: 504 504 505 from django.conf.urls.defaults import * 506 505 507 urlpatterns = patterns('polls.views', 506 508 (r'^$', 'index'), 507 509 (r'^(?P<poll_id>\d+)/$', 'detail'),