﻿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
16024	documentation problem, not sure	nicolaetitus12@…	elbarto	"here

http://docs.djangoproject.com/en/1.3/topics/http/urls/#naming-url-patterns


{{{
urlpatterns = patterns('',
    url(r'^archive/(\d{4})/$', archive, name=""full-archive""),
    url(r'^archive-summary/(\d{4})/$', archive, {'summary': True}, ""arch-summary""),
)
}}}


should be 


{{{
urlpatterns = patterns('',
    url(r'^archive/(\d{4})/$', archive, name=""full-archive""),
    url(r'^archive-summary/(\d{4})/$', archive, {'summary': True}, name=""arch-summary""),
)
}}}

it's missing the name= label
"	Bug	closed	Documentation	1.3	Normal	invalid			Ready for checkin	1	0	0	0	1	0
