Is there\'s some global variable for gettin\' language code in django template or atleast passing it through view? something like: {{ LANG }} should produce \"en\"
{{ LANG }}
It's an old topic. But some might find it useful.
{% load i18n %} ... {% get_current_language as LANGUAGE_CODE %}
Django reference and example.