﻿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
18667	Typo on CBV documentation	anonymous	nobody	"Here:

https://docs.djangoproject.com/en/dev/ref/class-based-views/generic-display/#django.views.generic.detail.DetailView

I think the line:

{{{
#!python
url(r'^(?P<slug>[-_\w]+)/$', ArticleDetailView.as_view(), 'article-detail'),
}}}

should be

{{{
#!python
url(r'^(?P<slug>[-_\w]+)/$', ArticleDetailView.as_view(), name='article-detail'),
}}}

otherwise the name is mapped to the ""kwarg"" parameter.

I'll make a pull request for the glory."	Cleanup/optimization	closed	Documentation	1.4	Normal	fixed	cbv		Unreviewed	0	0	0	0	1	0
