Hello,
when I try the polls app it gives me "Page not found (404) Using the URLconf defined in mysite.urls, Django tried these URL patterns, in this order:
polls/
admin/
The empty path didn't match any of these."
it can't find (I guess) the url defined as shown in the tutorial:
urlpatterns = [
path('polls/', include('polls.urls')),
path('admin/', admin.site.urls),
]
by evaluating in python path('polls/', include('polls.urls')) the result is
<URLResolver <module 'polls.urls' from 'C:\\Users\\ddeen\\Documents\\PYTHON\\mysite\\polls\\urls.py'> (None:None) 'polls/'>
Can anyone help me! I can't find anything else on the net!
I'm using windows 10,
python 3.5
and django 2.0.3