Made small change to docs/templates_python.txt to explicitly define 'context processors', for the benefit of searches

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3606 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-08-18 03:40:47 +00:00
parent 8b8f452055
commit 0a9a59f4d1
1 changed files with 4 additions and 3 deletions

View File

@ -259,9 +259,10 @@ an `HttpRequest object`_ as its first argument. For example::
The second difference is that it automatically populates the context with a few The second difference is that it automatically populates the context with a few
variables, according to your `TEMPLATE_CONTEXT_PROCESSORS setting`_. variables, according to your `TEMPLATE_CONTEXT_PROCESSORS setting`_.
The ``TEMPLATE_CONTEXT_PROCESSORS`` setting is a tuple of callables that take a The ``TEMPLATE_CONTEXT_PROCESSORS`` setting is a tuple of callables -- called
request object as their argument and return a dictionary of items to be merged **context processors** -- that take a request object as their argument and
into the context. By default, ``TEMPLATE_CONTEXT_PROCESSORS`` is set to:: return a dictionary of items to be merged into the context. By default,
``TEMPLATE_CONTEXT_PROCESSORS`` is set to::
("django.core.context_processors.auth", ("django.core.context_processors.auth",
"django.core.context_processors.debug", "django.core.context_processors.debug",