I\'m a newbie in Django and just started looking at it before a day by installing Django 1.10 on my local.
I\'ve followed all the instructions of this link https://d
change the mysite/url
from django.conf.urls import patterns,include, url
from django.contrib import admin
urlpatterns = patterns('',
url(r'^&', include('polls.urls')),
url(r'^admin/', include(admin.site.urls)),
)
Then run your server and visit 127.0.0.1/8000. This should take you to the index of ur website.
or you leave your code as it is and run 127.0.0.1/8000/polls on your browser