On 7/11/06, spako <[EMAIL PROTECTED]> wrote: > this is the only way i could get context processors specified in the > setting TEMPLATE_CONTEXT_PROCESSORS to be run in a view. i basically > want to know if what i do is the "correct" way of doing things and also > if there are other way of getting context processors to run. (i.e. not > having to invoke RequestContext)?
render_to_response takes an optional 'context_instance' argument which can tell it to use RequestContext or any other subclass of Context you might have defined, instead of the default. -- "May the forces of evil become confused on the way to your house." -- George Carlin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

