[Fixed]-How to overcome the following url issue?

1👍

the urls.py doesn’t go into the migrations folder.

Did you register your Polls app in the settings.py file? you need to add the name of the Polls app to the INSTALLED_APPS list.

INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'example: add app name here', 
'polls',]

you then need to create a url.py file within your polls app.

polls/
     urls.py

In that file you would add:

from django.conf.urls import url

from . import views

urlpatterns = [
    url(r'^$', views.index, name='index'),
]

the url you want to use in your browser would be something like this:

 http://127.0.0.1:8000/polls

Leave a comment