{% extends "wagtailadmin/base.html" %} {% load i18n wagtailadmin_tags static %} {% block titletag %}{% trans "Snippet Translation Progress" %}{% endblock %} {% block bodyclass %}listing{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% blocktrans with label=column_filter_label %}Only showing '{{ label }}' languages.{% endblocktrans %}
{% endif %} {% if snippets_with_progress %}| {% trans "Name" %} | {% trans "Type" %} | {% trans "Status" %} {% icon name="info-circle" classname="icon icon--column-tooltip" %} | {% trans "Translations" %} | {% trans "Actions" %} |
|---|---|---|---|---|
| {{ snippet_data.type_label }} | {% if snippet_data.has_draft_state %} {% if snippet_data.snippet.live and snippet_data.snippet.has_unpublished_changes %} {% trans "live + draft" as snippet_status %} {% elif snippet_data.snippet.live %} {% trans "live" as snippet_status %} {% else %} {% trans "draft" as snippet_status %} {% endif %} {{ snippet_status }} {% endif %} |
{% if snippet_data.translations %}
{% for translation in snippet_data.translations %}
{% if translation.percent_translated == 100 %}
{% icon name="circle-check" %}
{% trans "Complete:" %}
{% else %}
{% icon name="warning" %}
{% trans "In progress:" %}
{% endif %}
{{ translation.locale|upper }} {% if translation.percent_translated != 100 %}{{ translation.percent_translated }}%{% endif %}{% if translation.live == False %}
{% trans "(draft)" %}
{% elif translation.has_unpublished_changes %}
{% trans "(live + draft)" %}
{% endif %}
{% endfor %}
{% else %}
{% trans "No translations" %}
{% endif %}
|
{% trans "No snippets found." %}
{% endif %}