﻿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
31346	Without adding this, got an error.	Hadisur Rahman	nobody	"''== Given that :''

**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'**"	Bug	closed	Documentation	3.0	Normal	worksforme			Unreviewed	0	0	0	0	0	0
