From 56e553129f554f83c8e99ef3368544921dbd8a82 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Fri, 1 Feb 2013 09:55:19 +0100 Subject: [PATCH] Fixed #19714 -- Updated documentation about TemplateView context Thanks Aramgutang for the report. Refs #17228. --- docs/ref/class-based-views/base.txt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/ref/class-based-views/base.txt b/docs/ref/class-based-views/base.txt index c070ea707ad..20734583148 100644 --- a/docs/ref/class-based-views/base.txt +++ b/docs/ref/class-based-views/base.txt @@ -101,8 +101,13 @@ TemplateView .. class:: django.views.generic.base.TemplateView - Renders a given template, passing it a ``{{ params }}`` template variable, - which is a dictionary of the parameters captured in the URL. + Renders a given template, with the context containing parameters captured + in the URL. + + .. versionchanged:: 1.5 + The context used to be populated with a ``{{ params }}`` dictionary of + the parameters captured in the URL. Now those parameters are first-level + context variables. **Ancestors (MRO)**