Jay Parlar wrote:

>Is there something about render_to_response that makes it that
>LANGUAGE_CODE doesn't get properly populated?
>  
>
All those things that are populated in templates automatically work with 
the help of context processors 
(http://www.djangoproject.com/documentation/templates_python/#subclassing-context-requestcontext).
 
But they work only if you use RequestContext class for your context. 
render_to_response doesn't use RequestContext by default so all these 
variables aren't set. You can supply RequestContext explicitely:

    from django.template import RequestContext
    ...
    return render_to_response('template.html, {...}, 
context_instance=RequestContext(request))

And generic views do use RequestContext. That's why your 
firmware/success works.

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to