Like Todd said, 1. Write a function :
def my_template_vars(request) return {'var1': 'test', 'var2': 'test2'} 2. Edit your settings.py TEMPLATE_CONTEXT_PROCESSORS = ( ... 'project.app.file.my_template_vars', ) 3. Inside your views, load your templates with a RequestContext object if you are using functions like render_to_response. def my_view(request): ... return render_to_response(template_name, context_instance=RequestContext(request)) 4. Inside your template, you can now access {{ var1 }} all the time On 11 avr, 15:37, "Dave" <[EMAIL PROTECTED]> wrote: > Hi all, > > I was looking at middleware - so, thanks Todd for the pointer in the > right direction. I can't seem to find anything much in docs or on the > web about TEMPLATE_CONTEXT_PROCESSORS in Django. Anyone got any links? > > Cheers, > Dave > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---