{% extends "_base.html" %} {% load static %} {% load i18n %} {% block content %}

{% translate "Translation Report" %}

{% translate "Here you can get an overview of the current translation status of your page content." %}

{% translate "Current translation status" %}

{% translate "Outdated and missing Translations" %}

{% translate "This overview show the approximate number of words of outdated and missing translations." %}

{% for language, counter in word_count.items %} {% empty %} {% endfor %}
{% translate "Language" %} {% translate "Outdated (Words)" %} {% translate "Missing (Words)" %} {% translate "Total (per language)" %}

{{ language }}

{{ counter.OUTDATED }}

{{ counter.MISSING }}

{{ counter.OUTDATED|add:counter.MISSING }}

{% translate "No Language available." %}

{% translate "Total" %}

{{ total_outdated_words }}

{{ total_missing_words }}

{{ total_outdated_words|add:total_missing_words }}

{{ chart_data|json_script:"chart_data" }} {% endblock content %}