{% extends "base.html" %} {% load i18n %} {% load url from future %} {% block breadcrumbs %}
  • {{ object.project }}
  • {{ object.name }}
  • {% endblock %} {% block content %} {% include "show-lock.html" %}

    {% trans "Project Information" %}

    {% include "subproject_info.html" %}

    {% trans "Translations" %}

    {% with object.translation_set.enabled as translations and 1 as show_language %} {% include "list-translations.html" %} {% endwith %} {% url 'contact' as contact_url %}

    {% trans "Tools" %}

    {% if object.can_add_language %}
    {% if object.project.new_lang == 'url' %}

    {% blocktrans with object.project.instructions as url %}Should your language be missing, please follow translator instructions.{% endblocktrans %} {% else %}

    {% blocktrans %}Should your language be missing, please contact us.{% endblocktrans %} {% endif %}

    {% endif %}
    {% include "last-changes.html" %}
    {% url 'widgets' project=object.project.slug as widgets_url %} {% url 'data_project' project=object.project.slug as data_url %} {% include 'share.html' %}
    {% trans "Source strings review" %}
    {% endblock %}