{% extends "base.html" %} {% load i18n %} {% load permissions %} {% load translations %} {% load crispy_forms_tags %} {% block breadcrumbs %}
  • {{ object.project }}
  • {{ object.name }}
  • {% endblock %} {% block content %} {% whiteboard_messages subproject=object %} {% can_see_repository_status user object.project as user_can_see_repository_status %} {% can_commit_translation user object.project as user_can_commit_translation %} {% can_manage_acl user object.project as user_can_manage_acl %} {% can_view_reports user object.project as user_can_view_reports %} {% can_add_translation user object.project as user_can_add_translation %} {% can_edit_subproject user object.project as user_can_edit_subproject %} {% include "show-lock.html" %}
    {% include "list-translations.html" %}

    {% include "legend.html" %}

    {% if object.can_add_language and user_can_add_translation %}

    {% trans "Start new translation" %}

    {% endif %}
    {% include "subproject_info.html" %} {% include "project_stats.html" %}
    {% if replace_form %}

    {% trans "Search and replace" %}

    {% trans "You can replace string in all units at once. The search is simple substring case sensitive search." %}

    {% csrf_token %} {{ replace_form|crispy }}
    {% endif %}
    {% include "last-changes-content.html" %} {% trans "Browse all component changes" %}
    {% include "activity-tab.html" %} {% if user_can_see_repository_status %}

    {% trans "Loading…" %}

    {% endif %} {% if user_can_view_reports %}

    {% doc_url 'devel/reporting' 'credits' as settings_doc_url %} {% trans "Credits" %}

    {% trans "Credits list all translators who have contributed to this component in a given time period. It can be useful for including in your documentation or application to thank translators." %}

    {% crispy reports_form %}

    {% doc_url 'devel/reporting' 'stats' as settings_doc_url %} {% trans "Contributor stats" %}

    {% trans "Reports number of strings and words translated by each translator." %}

    {% crispy reports_form %}
    {% endif %}
    {% endblock %}