﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
17731	Tutorial part 3 :regex for polls/index.html doesn't match	anonymous	nobody	"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
"	Uncategorized	closed	Documentation	1.3	Normal	invalid	tutorial,url patterns		Unreviewed	0	0	0	0	1	0
