﻿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
2081	Typo in django.conf.urls.registration	erikankrom	Adrian Holovaty	"{{{
#!python
urlpatterns = patterns('',
    (r'^login/$', 'django.contrib.auth.view.login'),
    (r'^logout/$', 'django.contrib.auth.views.logout'),
}}}
Should be changed to:
{{{
#!python
urlpatterns = patterns('',
    (r'^login/$', 'django.contrib.auth.views.login'),
    (r'^logout/$', 'django.contrib.auth.views.logout'),
}}}"	defect	closed	Core (Other)		minor	fixed	registration urls		Unreviewed	0	0	0	0	0	0
