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

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

{% if stats %} {% for stat in stats %} {% endfor %}
{% trans "Resource" %} {% trans "Completion" %} {% trans "Last Updated" %}
{{ stat.object.name }} {% with 200 as barwidth %}
{% trans "Untranslated: " %}{{ stat.num_untranslated }}">
{{ stat.trans_percent }}%
{% 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 %}
{% else %}

{% trans "No resources are registered for this release yet." %}

{% endif %}
{% endblock %}