Hello

I didn't find my 404 error, it's seems that the issue is arround the urls 
configuration on the project. In additionnal, find the zip project for more 
details.
Confg : django 1.11.11, python 2.7

Please could you help me ?

Thanks

In urls.py 

from django.conf.urls import url, include
from django.contrib import admin

urlpatterns = [
    url(r'^polls/', include('polls.urls')),
    url(r'^admin/', admin.site.urls),
]

In polls/urls.py

# -*- coding: utf-8 -*-
from django.conf.urls import url, include

from . import views

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



-- 
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/25321b55-f2e3-48e7-a9e5-c7d5456a6f32%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

<<attachment: mysite3.zip>>

Reply via email to