mirror of https://github.com/django/django.git
[1.6.x] Fixed #21264 -- Incorrect RST usage in docs
Backport of 8fc63087f6
from master
This commit is contained in:
parent
8f5ea9d19b
commit
e3c8db61f3
|
@ -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
|
||||
|
|
|
@ -169,7 +169,8 @@ This example is equivalent to::
|
|||
|
||||
The arguments could be:
|
||||
|
||||
* A model: the model's `get_absolute_url()` function will be called.
|
||||
* A model: the model's :meth:`~django.db.models.Model.get_absolute_url()`
|
||||
function will be called.
|
||||
|
||||
* A view name, possibly with arguments: :func:`urlresolvers.reverse
|
||||
<django.core.urlresolvers.reverse>` will be used to reverse-resolve the
|
||||
|
|
Loading…
Reference in New Issue