{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% load wger_extras %} {% block title %}{% trans "Languages" %}{% endblock %} {% block content %} {% for language in language_list %} {% endfor %}
{% trans "Language short name" %} {% trans "Language full name" %}
{{language.short_name}} {{language.full_name}}
{% endblock %} {% block sidebar %}

{% trans "Options" %}

{% trans 'Add' %} {% trans "Add" %}

{% blocktrans %}After adding a new language here you need to add it to the global_settings.py file and make sure there is a corresponding flag icon in static/images/icons.{% endblocktrans %}

{% endblock %}