{% load i18n locale %} {% if trans_stats %}

{% trans "Translation Statistics" %}

{% for item in trans_stats %} {% endfor %}
{{ item.title }} {{ item.words|safe }} {{ item.percentage }} {{ item.units }}
{% endif %} {% if check_failures %}

{% trans "Failing Checks" %}

{% for failure_category in check_failures %}

{{ failure_category.display_name }}

{% for check in failure_category.checks %} {% if not forloop.counter0|divisibleby:2 %} {% endif %} {% endfor %}
{{ check.display_name }} {{ check.count }}
{% endfor %}
{% endif %} {% if not trans_stats and not check_failures %}

{% trans "Nothing to show" %}

{% endif %}