[Django]-Viewing translations in django templates (e.g – making it work)

3👍

This is probably one of two problems:

  1. Make sure you have django.core.context_processors.i18n in settings.TEMPLATE_CONTEXT_PROCESSORS

  2. Make sure you pass RequestContext(request) as your context_instance if you are rendering your template using render_to_response

0👍

You might have left the USE_I18N = False in your settings. see docs

Leave a comment