﻿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
29657	Looks like an incorrect documentation [https://docs.djangoproject.com/en/2.1/intro/tutorial03/]	kshitijkorde	nobody	"Link: https://docs.djangoproject.com/en/2.1/intro/tutorial03/
In the below code, a forward slash is missing in the first argument to path function, should it not be '/', '/<int:question_id>/', likewise..

{{{
from django.urls import path

from . import views

urlpatterns = [
    # ex: /polls/
    path('', views.index, name='index'),
    # ex: /polls/5/
    path('<int:question_id>/', views.detail, name='detail'),
    # ex: /polls/5/results/
    path('<int:question_id>/results/', views.results, name='results'),
    # ex: /polls/5/vote/
    path('<int:question_id>/vote/', views.vote, name='vote'),
]
}}}

without the forward slash, a page not found error is reported for /polls/5 etc.."	Bug	closed	Documentation	2.1	Normal	invalid			Unreviewed	0	0	0	0	0	0
