﻿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
5702	Django Documentation defect: missed 'name=' in  - url_dispatch/#naming-url-patterns	popt <popython@…>	nobody	"* [http://www.djangoproject.com/documentation/url_dispatch/#naming-url-patterns Django Documentation defect here:]

{{{
Here’s the above example, rewritten to used named URL patterns:

urlpatterns = patterns('',
    url(r'/archive/(\d{4})/$', archive, name=""full-archive""),
    url(r'/archive-summary/(\d{4})/$', archive, {'summary': True}, ""arch-summary""),
)
}}}

it missed 'name=', should be:
{{{

Here’s the above example, rewritten to used named URL patterns:

urlpatterns = patterns('',
    url(r'/archive/(\d{4})/$', archive, name=""full-archive""),
    url(r'/archive-summary/(\d{4})/$', archive, {'summary': True}, name=""arch-summary""),
)
}}}
"		closed	Documentation	dev		worksforme	Documentation		Unreviewed	1	0	0	0	0	0
