#17731: Tutorial part 3 :regex for polls/index.html doesn't match
-------------------------------+-----------------------------------
     Reporter:  anonymous      |      Owner:  nobody
         Type:  Uncategorized  |     Status:  new
    Component:  Documentation  |    Version:  1.3
     Severity:  Normal         |   Keywords:  tutorial,url patterns
 Triage Stage:  Unreviewed     |  Has patch:  0
Easy pickings:  1              |      UI/UX:  0
-------------------------------+-----------------------------------
 Hi,

 In [https://docs.djangoproject.com/en/1.3/intro/tutorial03/] the url
 patterns doesn't search for polls/index.html
 Instead of

 urlpatterns = patterns('',

      url(r'^polls/$', 'polls.views.index'),
      #..... other urls

 we should have

 urlpatterns = patterns('',

      url(r'^polls/index.html$', 'polls.views.index'),
      #..... other urls

-- 
Ticket URL: <https://code.djangoproject.com/ticket/17731>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to