Mike, do you have the server restarted?
воскресенье, 28 февраля 2016 г., 18:15:24 UTC+3 пользователь Mike Kipling написал:
-- As for me, the shell window says:
Starting development server at http://127.0.0.1:8000/Quit the server with CTRL-BREAK.
воскресенье, 28 февраля 2016 г., 18:15:24 UTC+3 пользователь Mike Kipling написал:
Here are the two urls.py files:polls/urls.pyfrom django.conf.urls import urlfrom . import viewsurlpatterns = [url(r'^$', views.index, name='index'),]mysite/urls.pyfrom django.conf.urls import include, urlfrom django.contrib import adminurlpatterns = [url(r'^polls/', include('polls.urls')),url(r'^admin/', admin.site.urls),]Mike
On Saturday, February 27, 2016 at 1:50:39 PM UTC-6, Mike Kipling wrote:I am working through the Django tutorial Writing your first Django app, part 1.I am using Windows 10, python 3.5.1 and Django 1.9.2 .In the Write your first view section:after writing the polls/views.py and polls/urls.py files,and modifying the manage/urls.py file,and starting the server,When I go to http://localhost:8000/polls/ in the browser I get the following error:Page not found (404)
Request Method: GET Request URL: http://localhost:8000/polls/ Using the URLconf defined in
mysite.urls
, Django tried these URL patterns, in this order:
- ^admin/
The current URL,
polls/
, didn't match any of these.
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+unsubscribe@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/86c567ef-db30-4fde-b334-3c4a0931420d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment