[Django] #29657: Looks like an incorrect documentation [https://docs.djangoproject.com/en/2.1/intro/tutorial03/]

3 views
Skip to first unread message

Django

unread,
Aug 10, 2018, 6:30:48 AM8/10/18
to django-...@googlegroups.com
#29657: Looks like an incorrect documentation
[https://docs.djangoproject.com/en/2.1/intro/tutorial03/]
-----------------------------------------+------------------------
Reporter: kshitijkorde | Owner: nobody
Type: Bug | Status: new
Component: Documentation | Version: 2.1
Severity: Normal | Keywords:
Triage Stage: Unreviewed | Has patch: 0
Needs documentation: 0 | Needs tests: 0
Patch needs improvement: 0 | Easy pickings: 0
UI/UX: 0 |
-----------------------------------------+------------------------
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..

--
Ticket URL: <https://code.djangoproject.com/ticket/29657>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

Django

unread,
Aug 10, 2018, 6:51:02 AM8/10/18
to django-...@googlegroups.com
#29657: Looks like an incorrect documentation
[https://docs.djangoproject.com/en/2.1/intro/tutorial03/]
-------------------------------+--------------------------------------
Reporter: kshitijkorde | Owner: nobody
Type: Bug | Status: closed
Component: Documentation | Version: 2.1
Severity: Normal | Resolution: invalid

Keywords: | Triage Stage: Unreviewed
Has patch: 0 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
-------------------------------+--------------------------------------
Changes (by kshitijkorde):

* status: new => closed
* resolution: => invalid


Comment:

I think the documentation is correct. Will close the ticket. Sorry for the
inconvenience.

--
Ticket URL: <https://code.djangoproject.com/ticket/29657#comment:1>

Reply all
Reply to author
Forward
0 new messages