IDE показывает мне ошибку в ключевом слове объектов в "latest_questions = Question.objects.order_by ('- pub_date') [: 10]" - PullRequest
0 голосов
/ 06 марта 2020
Page not found (404)
Request Method: GET
Request URL:    http://127.0.0.1:8000/polls/'polls/index.html
Using the URLconf defined in mysite.urls, Django tried these URL patterns, in this order:

admin/
^polls/ ^$ [name='index']
^polls/ ^(?P<question_id>[0-9]+)/$ [name='detail']
^polls/ ^(?P<question_id>[0-9]+)/results$ [name='results']he current path, polls/'polls/index.html, didn't match any of these.

You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.

1 Ответ

0 голосов
/ 06 марта 2020

Ваша проблема не в IDE, вам нужно правильно настроить страницу urls.py. Кажется, Django не может найти адрес 'polls /' polls / index. html '. Вам нужно go файл urls.py и добавить следующую строку;

path('polls/'polls/index.html/', views.path_to_function, name='index'),
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...