{% 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 %}
{% 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 %} |
{% trans "No resources are registered for this release yet." %}
{% endif %}