{% extends "wiki/base.html" %}
{% from "wiki/includes/sidebar_modules.html" import document_tools with context %}
{% set title = _('Show translations | {document}')|f(document=document.title) %}
{% set crumbs = [(document.get_absolute_url(), document.title),
(None, _('Show translations'))] %}
{% set meta = [('robots', 'noindex, nofollow')] %}
{% set ga_content_group = "kb-cms" %}
{% block content %}
{{ _('This document has been translated to the following locales:') }}
{{ _('This document is missing translations for the following locales:') }}
{% for locale in untranslated_locales %}
- {{ locale[1] }} ({{ locale[0] }})
{% endfor %}
{% endblock %}
{% block side_top %}
{{ document_tools(document, document.parent, user, 'show_translations', settings) }}
{% endblock %}