> Anyone know what I really ought to be doing?

What you want is a default context. Look at
http://www.djangoproject.com/documentation/templates_python/#playing-with-context-objects

Also see 
http://www.djangoproject.com/documentation/settings/#template-context-processors.

Pretty much all of our views end with something like this:

return render_to_response('some_template_name.html',
            RequestContext(request, {
                   'title': 'My Title,etc. etc.
                   }))

RequestContext will automatically call each of the
TEMPLATE_CONTEXT_PROCESSORS listed in the settings.py file.

    HTH,
    Peter
--~--~---------~--~----~------------~-------~--~----~
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