Skip to content
Advertisement

Why do I get an 404 Error in part 4 of the Django tutorial “Writing you first Django app”

I am trying to complete the Django tutorial: Writing your first Django app. I am currently stuck on part 4.

After updating my template polls/templates/polls/detail.html, rewriting my polls/views.py and creating a results.html located at polls/templates/polls/results.html, I ran the server and tried to go to http://127.0.0.1:8000/polls/1/, but I get this Error:

JavaScript

I see that the error is raised by the html-file detail which looks like this:

JavaScript

My other two templates (html-files) index and result looks like this:

index.html:

JavaScript

results.html:

JavaScript

When I try to run just http://127.0.0.1:8000, I get this Error Message:

JavaScript

I tried to re-do the steps mentioned above (the first three steps of Part 4), making sure I use the correct paths, but I still get errors.

This is how my .py’s look:

…pollsviews.py :

JavaScript

…/polls/urls.py:

JavaScript

I have already looked at these questions:

Page not found (404) Request Method: GET Request URL: http://127.0.0.1:8000/

How to fix “Page not found (404)” error (“Django tried these URL patterns… The empty path didn’t match any of these.”)

Page not found 404 on Django site?

Django Error: Page not found (404) Request Method: GET Request URL: http://127.0.0.1:8000/helpdesk/login/?next=/

How to fix “Page not found (404)” error (“Django tried these URL patterns… The empty path didn’t match any of these.”)

Django Http404 message not showing up

Django Page not found(404) error (Library not found)

Django 404 error-page not found

(and many more) trying to figure this out for two days, but I can’t seem to figure it out. I realize that this question probably is a duplicate, but I’m desperate, and I appreciate any help I can get.

Advertisement

Answer

So this isn’t a problem with any of your HTML files or the URLs file. The clue to that can be found in the error message, here: Raised by: polls.views.detail

Which indicates that detail returns a 404 object. If we look at that part of views, you have this line:

question = get_object_or_404(Question, pk=question_id)

My guess is that you don’t have a question in the database with the ID 1 OR the database is empty. If either of those are true, get_object_or_404 would return a 404.

If there was an issue with the page actually not being found, you would not see the “Raised by” part of the error at all.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement