[Django]-Django i18n Javascript Problem

10👍

you should run

django-admin.py makemessages -d djangojs -l en
django-admin.py compilemessages

for each language you have 🙂

0👍

In your file base.html add the following lines to the beginning

{% load static from staticfiles %}
{% load i18n %}
{% get_current_language as LANGUAGE_CODE %}
{% get_available_languages as LANGUAGES %}

Leave a comment