Commit 363b8c69 authored by Tim Graham's avatar Tim Graham
Browse files

[1.6.x] Fixed #21768 -- Corrected TemplateView context section.

Thanks nedbatchelder for the report and claudep for the patch.

Backport of c05b2f58 from master
parent b63dad3f
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -111,6 +111,7 @@ TemplateView
    This view inherits methods and attributes from the following views:

    * :class:`django.views.generic.base.TemplateResponseMixin`
    * :class:`django.views.generic.base.ContextMixin`
    * :class:`django.views.generic.base.View`

    **Method Flowchart**
@@ -146,8 +147,8 @@ TemplateView

    **Context**

    * ``params``: The dictionary of keyword arguments captured from the URL
      pattern that served the view.
    * Populated (through :class:`~django.views.generic.base.ContextMixin`) with
      the keyword arguments captured from the URL pattern that served the view.

RedirectView
------------