{% extends "base.html" %} {% load i18n %} {% load i18n_utils %} {% block head %} {% endblock head %} {% block subtitle %} {% trans "Interface translation" %} {% endblock subtitle %} {% block actions %} {% endblock actions %} {% block main %}
{% for item in translations %} {% endfor %}
{% trans "Language" %} {% trans "Progression" %}
{% get_country_flag item.language_code as flag_path %} {% if flag_path %} {% endif %} {{ item.language }}
{% if item.translation.progression %} {{ item.translation.progression }}% {% endif %}
{% trans "Export" %} {% trans "Import" %} {% if item.translation.last_modified != None %} {% blocktrans with date=item.translation.last_modified|date %}Last translation : {{ date }} {% endblocktrans %} {% endif %}
{% endblock main %}