{% extends "base.html" %} {% load i18n %} {% load translations %} {% load url from future %} {% load crispy_forms_tags %} {% block breadcrumbs %}
  • {{ object }}
  • {% endblock %} {% block content %}

    {% trans "Components" %}

    {% for prj in object.subproject_set.select_related %} {% with prj.get_translated_percent as percent and prj.get_fuzzy_percent as fuzzy and prj.get_failing_checks_percent as check_percent %} {% endwith %} {% endfor %}
    {% trans "Component" %} {% trans "Translated" %}
    {{ prj.name }} {% translation_progress prj %} {{ percent }}%
    {% include "legend.html" %}

    {% trans "Project Information" %}

    {% include "project_info.html" %}

    {% trans "Glossaries" %}

    {% if dicts %}
    {% for dict in dicts %} {{ dict.count }}{{ dict.language }} {% endfor %}
    {% else %}

    {% trans "There are currently no glossaries defined for this project." %}

    {% endif %}
    {% include "last-changes.html" %}

    {% trans "Activity" %}

    {% trans "Loading…" %}

    {% if perms.trans.commit_translation or perms.trans.update_translation %}

    {% trans "Loading…" %}

    {% endif %} {% if perms.trans.manage_acl and object.enable_acl %}

    {% trans "Users" %}

    {% for user in object.all_users %} {% endfor %}
    {% trans "Username" %} {% trans "Full name" %} {% trans "E-mail" %}
    {{ user.username }} {{ user.first_name }} {{ user.email }}
    {% csrf_token %}
    {% csrf_token %}

    {% trans "Add new user" %}

    {{ add_user_form|crispy }}
    {% endif %}
    {% endblock %}