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'),
]