[1.5.x] Fixed #21264 -- Incorrect RST usage in docs

Backport of 8fc63087f6 from master
This commit is contained in:
Bouke Haarsma 2013-10-14 13:59:56 +02:00 committed by Tim Graham
parent e532d1e38f
commit b268488806
2 changed files with 6 additions and 4 deletions

View file

@ -69,9 +69,10 @@ and override the template name::
template_name = "about.html"
Then we just need to add this new view into our URLconf.
`~django.views.generic.base.TemplateView` is a class, not a function, so we
point the URL to the :meth:`~django.views.generic.base.View.as_view` class
method instead, which provides a function-like entry to class-based views::
:class:`~django.views.generic.base.TemplateView` is a class, not a function,
so we point the URL to the :meth:`~django.views.generic.base.View.as_view`
class method instead, which provides a function-like entry to class-based
views::
# urls.py
from django.conf.urls import patterns