﻿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
29231	Documentation Regression for Tutorial 03	Paul	nobody	"It looks like this issue may have been fixed in the past, but documentation version 1.7 onward do not mention this. It is also not mentioned in Tutorial 04. 
The tutorial is missing a reference to adding the namespace to the mysite/urls.py as follows:
{{{
from django.contrib import admin
from django.urls import path, include

 urlpatterns = [
-    path('polls/', include('polls.urls')),
+    path('polls/', include('polls.urls', namespace=""polls"")),
     path('admin/', admin.site.urls),
 ]
}}}

Without this change, it gives an NoReverseMatch error, ""polls"" is not a registered namespace

Could the tutorial be updated to include this change?
[[https://docs.djangoproject.com/en/2.0/intro/tutorial03/#namespacing-url-names]]"	Bug	closed	Documentation	2.0	Normal	fixed			Unreviewed	0	0	0	0	1	0
