On 7/12/07, Martin Kaffanke <[EMAIL PROTECTED]> wrote:
> At the moment I use on some places a
>
> {'session': request.session} for the Context to render the template.
> How Can I make the session automaticaly available in the base template,
> without having to be aware that I don't forgett this parameter for the
> Context?

Install the request context processor. In your settings file, define

TEMPLATE_CONTEXT_PROCESSORS = (
    'django.core.context_processors.auth',
    'django.core.context_processors.debug',
    'django.core.context_processors.i18n',
    'django.core.context_processors.media',
    'django.core.context_processors.request',
)

(This is the default value, plus the request context processor)

Then, every RequestContext will have a 'request' variable automatically. See

http://www.djangoproject.com/documentation/templates_python/#subclassing-context-requestcontext

for more details.

Yours,
Russ Magee %-)

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to