From 97dd47a8ed230564335ecc0327d542544498ea4c Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 30 Oct 2006 20:57:35 +0000 Subject: [PATCH] Added note to docs/generic_views.txt that extra_context is new in Django development version. Refs #2966 and [3950] git-svn-id: http://code.djangoproject.com/svn/django/trunk@3953 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/generic_views.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/generic_views.txt b/docs/generic_views.txt index f0c3f738f3..1736770a20 100644 --- a/docs/generic_views.txt +++ b/docs/generic_views.txt @@ -97,7 +97,8 @@ which is a dictionary of the parameters captured in the URL. * ``extra_context``: A dictionary of values to add to the template context. By default, this is an empty dictionary. If a value in the dictionary is callable, the generic view will call it - just before rendering the template. + just before rendering the template. (**This is new in the + Django development version.**) **Example:**