#29231: Documentation Regression for Tutorial 03
-------------------------------+--------------------------------------
Reporter: Paul | Owner: nobody
Type: Bug | Status: new
Component: Documentation | Version: 2.0
Severity: Normal | Resolution:
Keywords: | Triage Stage: Unreviewed
Has patch: 0 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 1 | UI/UX: 0
-------------------------------+--------------------------------------
Changes (by Paul):
* status: closed => new
* resolution: invalid =>
Comment:
Here is my polls/url.py:
{{{
from django.urls import path
from . import views
app_name = 'polls'
urlpatterns = [
# /polls/
path('',views.index, name='index'),
# /polls/5/
path('<int:question_id>/', views.detail, name='detail'),
# /polls/5/results/
path('<int:question_id>/results/', views.results, name='results'),
# /polls/5/vote/
path('<int:question_id>/vote/', views.vote, name='vote'),
]
}}}
And python -m django --version yields 2.0.3
--
Ticket URL: <https://code.djangoproject.com/ticket/29231#comment:2>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-updates/072.1c5c79d6e0719d0cdd2ef204078d5be3%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.