﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
32250	Typo in tutorial 04	Matt	nobody	"Hi,
I'm just working my way through the tutorials and ran into an issue on tutorial 4. I keep getting a page not found error, and I believe this may be due to a typo in the tutorial.

In the Amend views section (https://docs.djangoproject.com/en/3.1/intro/tutorial04/#amend-views), I believe the code:

  {{{#!python
  class DetailView(generic.DetailView):
    model = Question
    template_name = 'polls/detail.html'
  }}}

should actually be:

  {{{#!python
  class DetailView(generic.DetailView):
    model = Question
    template_name = 'polls/details.html'
  }}}

I.e. '''detail.html''' >> '''details.html'''

Obviously, I may be wrong as I'm a complete beginner, but wanted to mention it in case this is a typo and others run into the same issue."	Bug	closed	Documentation	3.1	Normal	invalid	typo		Unreviewed	0	0	0	0	0	0
