**from django.urls import path
from . import views
app_name = 'polls'
urlpatterns = [
path('', views.index, name='index'),
path('<int:question_id>/', views.detail, name='detail'),
path('<int:question_id>/results/', views.results, name='results'),
path('<int:question_id>/vote/', views.vote, name='vote'),
]**
''== We need to edit and add like this (see below):''
**from mysite import urls
urls.app_name='polls'**
--
Ticket URL: <https://code.djangoproject.com/ticket/31346>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* owner: (none) => nobody
* resolution: => worksforme
* status: new => closed
* component: Error reporting => Documentation
Comment:
The current form works for me. Try to use one of
[https://code.djangoproject.com/wiki/TicketClosingReasons/UseSupportChannels
support channels].
--
Ticket URL: <https://code.djangoproject.com/ticket/31346#comment:1>