{{ document.title }}

{% if redirected_from %}

{{ _('Redirected from {title}')|fe(href=redirected_from.get_absolute_url()|urlparams(redirect='no'), title=redirected_from.title) }}

{% endif %}
{% if request.user.is_authenticated() and document_html %} {% if render_raw_fallback %}
{% trans url=document.get_absolute_url() %} This document is being rendered for the first time by the system. Please reload this page in a few minutes to see full content. {% endtrans %}
{% elif document.is_rendering_in_progress %}
{% trans url=document.get_absolute_url(), started_at=document.render_started_at %} An update to this document is currently in progress. If the content below seems stale or if something is missing, please reload this page in a few minutes. {% endtrans %}
{% elif document.is_rendering_scheduled and not kumascript_errors %}
{% trans url=document.get_absolute_url(), scheduled_at=document.render_scheduled_at %} An update to this document has been scheduled. If the content below seems stale or if something is missing, please reload this page in a few minutes. {% endtrans %}
{% endif %} {% endif %} {% if kumascript_errors %} {% include 'wiki/includes/kumascript_errors.html' %} {% endif %}
{# {% if document.is_majorly_outdated() %}
{% trans url=document.parent.get_absolute_url(), title=document.parent.title %}

This article may be out of date.

An important change has been made to the English article on which this is based. Until this page is updated, you might find this helpful: {{ title }}

{% endtrans %}
{% endif %} #} {# There's no .has() method on review_tags; need to iterate for now #} {% if document.current_revision %} {% for tag in document.current_revision.review_tags.all() %} {% if 'technical' == tag.name %}
{% trans %}

This article is in need of a technical review.

{% endtrans %}
{% elif 'editorial' == tag.name %}
{% trans %}

This article is in need of an editorial review.

{% endtrans %}
{% endif %} {% endfor %} {% endif %} {% if fallback_reason %}
{% trans help_link=help_link, locale=settings.LOCALES[request.locale].native %} Our volunteers haven't translated this article into {{ locale }} yet. Join us and help get the job done! {% endtrans %}
{% endif %} {% set tags = document.tags.all() %} {% set attachments = document.attachments.all() %}
{% if toc_html %}

Table of Contents

    {{ toc_html|safe }}
  • {% if tags|length %} Tags {% else %} Tags {% endif %}
  • {% if attachments|length %} Files {% else %} Files {% endif %}
{% endif %} {% if not fallback_reason %} {% if not document_html %} {{ _("This article doesn't have any content yet.") }} {% elif document.is_template %}
{{ document_html }}
{% else %} {{ document_html|safe }} {% endif %} {% elif fallback_reason == 'no_translation' %} {{ document_html|safe }} {% elif fallback_reason == 'translation_not_approved' %} {{ document.parent.html|safe }} {% else %} {{ _("This article doesn't have approved content yet.") }} {% endif %}
{% if tags | length %}

{{ _('Tags') }} ({{ tags | length}})

{% endif %} {% include 'wiki/includes/attachment_list.html' %}
{% trans contributors=user_list(contributors) %} Contributors to this page: {{ contributors }} {% endtrans %} {% set current_revision = document.current_revision %} {% if current_revision.creator %}
{{ _('Last updated by') }}: {{ current_revision.creator }}, {{ datetimeformat(current_revision.created, format='datetime') }} {% if current_revision.reviewer and current_revision.reviewed %}
{{ _('Last reviewed by') }}: {{ current_revision.reviewer }}, {{ datetimeformat(current_revision.reviewed, format='datetime') }} {% endif %} {% endif %}