Hello,
I'm new to django, and I'm trying to learn it, but I'm stuck on the 1st 
part of the 
tutorial: https://docs.djangoproject.com/en/2.0/intro/tutorial01/

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

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d34a6a9f-71d1-4c53-a31a-7dfdae7e6bb3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to