{% extends "projects/project_detail_childs.html" %} {% load i18n %} {% load statistics_resources %} {% block extra_head %} {% endblock %} {% block body_class %}{{ block.super }} release_detail{% endblock %} {% block title %}{{ block.super }} | {{ release.name }} | {{ language.name }}{% endblock %} {% block breadcrumb %}{{ block.super }} » {% blocktrans with release.name as release_name %}Release '{{ release_name }}{% endblocktrans %}' » {{ language.name }}{% endblock %} {% block content_sec %} {% endblock %} {% block content_title %}

Release '{{ release.name }}': {{ language.name }}

{% endblock %} {% block content_main %}
{% if stats %}

{% blocktrans count resources|length as counter %}Resource under this Release{% plural %}Resources under this Release{% endblocktrans %}

{% for stat in stats %} {% endfor %}
{% trans "Category" %} {% trans "Resource" %} {% trans "Completion" %} {% trans "Last Updated" %} {% trans "Importance" %}
{{ stat.resource.category }} {{ stat.resource.project.name }} → {{ stat.resource.name }} {% if stat.lock.valid %} {% else %} {% if stat.resource.accept_translations %} {% else %} {% endif %} {% endif %} {% with 200 as barwidth %} {% stats_bar_simple stat barwidth %} {% endwith %} {% with stat.last_update as last_update %} {% with stat.last_committer as last_committer %} {% if last_update %} {{ last_update|timesince }} {% if last_committer %} by {{ last_committer }} {% endif %} {% else %} {% trans "no activity yet" %} {% endif %} {% endwith %} {% endwith %} {% with stat.resource.priority.level as priority_level %} {% with stat.resource.priority.display_level as display_level %} {% endwith %} {% endwith %}
{% endif %} {% if private_stats %}

{% blocktrans count resources|length as counter %}Private Resource that you have access to under this Release{% plural %}Private resources that you have access to under this Release{% endblocktrans %}

{% for stat in private_stats %} {% endfor %}
{% trans "Resource" %} {% trans "Completion" %} {% trans "Last Updated" %} {% trans "Importance" %}
{{ stat.resource.project.name }} → {{ stat.resource.name }} {% if stat.lock.valid %} {% else %} {% if stat.resource.accept_translations %} {% else %} {% endif %} {% endif %} {% with 200 as barwidth %} {% stats_bar_simple stat barwidth %} {% endwith %} {% with stat.last_update as last_update %} {% with stat.last_committer as last_committer %} {% if last_update %} {{ last_update|timesince }} {% if last_committer %} by {{ last_committer }} {% endif %} {% else %} {% trans "no activity yet" %} {% endif %} {% endwith %} {% endwith %} {% with stat.resource.priority.level as priority_level %} {% with stat.resource.priority.display_level as display_level %} {% endwith %} {% endwith %}
{% endif %} {% if empty_rlstats or empty_private_rlstats %}
The following resources don't have any translations in {{ language.name }} and also don't have a team associated with this language: {% for resource in empty_rlstats %} {% endfor %} {% if empty_private_rlstats %} {% for resource in empty_private_rlstats %} {% endfor %} {% endif %}
{{ forloop.counter }}) {{ resource.project.name}} → {{ resource.name }}
{{ forloop.counter }}) {{ resource.project.name}} → {{ resource.name }} (private)
{% endif %}
{% endblock %}