On Wed, 2007-02-28 at 07:14 -0600, GaRaGeD Style wrote:
> I have a testing view that uses loader.get_template/render(context)
> combo,
> and in settings.py I have put:
> TEMPLATE_CONTEXT_PROCESSORS = (
> 
> "django.core.context_processors.auth", 
> 
> "django.core.context_processors.debug",
>                                 "django.core.context_processors.i18n",
>                                 )
> 
> but I don't get the LANGUAGES tuple on the rendered page, and hence a
> form from the extendable 
> template is not working:
> 
> ------Renders nothing----------
> {% for lang in LANGUAGES %}
> <option value="{{ lang.0 }}">{{ lang.1 }}</option>
> {% endfor %}
> ------Renders nothing---------- 

Are you using a RequestContext() class when you render your template? If
you are just using a Context() class, you won't see any effect from
context processors.

If what I just wrote seems like a foreign language (and a quick search
of the djangoproject.com doesn't clear it up for you), post an example
of how you are trying to render this template. Somewhere in your view
will be a call to render_to_html() or something similar. What does that
line look like?

Regards,
Malcolm



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