{% extends "projects/admin/base.html" %} {% load i18n assets %} {% get_current_language as LANGUAGE_CODE %} {% block title %}{% trans "Languages" %} | {{ block.super }}{% endblock %} {% block content %}

{% trans "Here you can add, edit, or delete the languages for this project." %}

{% if not can_add %}
{% trans 'There are no templates for this project, so adding new languages from this screen is disabled.' %}
{% if layout_style == "gnu" %} {% blocktrans %}Pootle will look on the filesystem for files named: {{ template_path }}{% endblocktrans %} {% else %} {% blocktrans %}Pootle will look on the filesystem for a folder named {{ template_path }}{% endblocktrans %} {% endif %}
{% else %} {% include "admin/_generic_formset.html" %} {% endif %}
{% endblock %} {% block scripts_extra %} {% assets 'js_admin_general_app' %} {% endassets %} {% endblock %}