{% 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" %}

    {% include "list-translations.html" %} {% 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 %}

    {% trans "Please choose language into which you would like to translate." %}

    {% csrf_token %} {{ new_lang_form.as_table }}
    {% if object.project.new_lang == 'contact' or object.project.new_lang == 'add' %} {% endif %}

    {% trans "Can not find your language in above list?" %}

    {% trans "Report missing language" %}

    {% endif %}
    {% endif %}
    {% include "last-changes.html" %}
    {% with object.project as project %} {% include 'share.html' %} {% endwith %}
    {% endblock %}