{% extends "layout_fluid.html" %} {% load breadcrumb %} {% load i18n %} {% block title %}{% trans "Administration" %}{% endblock %} {% block h1 %}{% trans "Administration" %}{% endblock %} {% block page_id %}Administration{% endblock %} {% block content %}
{% include "administration/sidebar.html" %}

{% trans "Language" %}

{% get_current_language as LANGUAGE_CODE %} {% get_available_languages as LANGUAGES %} {% get_language_info_list for LANGUAGES as languages %}
{% csrf_token %}

{% trans "Select one of the following languages available:" %}

{% for language in languages %}
{% endfor %} {% trans "Your choice will be recorded in the internal session store which does not retain data forever." %}
{% endblock %}