{% extends "wiki/base.html" %} {% load wiki_tags i18n sekizai_tags %} {% block wiki_pagetitle %}{% trans "Delete article" %}{% endblock %} {% block wiki_contents %}

{% trans "Delete" %} "{{ article.current_revision.title }}"

{% if cannot_delete_root %}

{% trans "You cannot delete a root article." %}

{% trans "Go back" %}

{% else %} {% if cannot_delete_children %}

{% trans "You cannot delete this article because you do not have permission to delete articles with children. Try to remove the children manually one-by-one." %}

{% endif %} {% if delete_children %}

{% trans "You are deleting an article. This means that its children will be deleted as well. If you choose to purge, children will also be purged!" %}

{% trans "Articles that will be deleted" %}

{% endif %} {% if not cannot_delete_children %}

{% trans "You are deleting an article. Please confirm." %}

{% wiki_form delete_form %}
{% trans "Go back" %}
{% endif %} {% endif %} {% addtoblock "js" %} {% endaddtoblock %} {% endblock %}