{% extends "wiki/base.html" %} {% load static %} {% load wiki_tags %} {% block wiki_pagetitle %}Delete Article{% endblock %} {% block wiki_contents %}

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

{% if cannot_delete_root %}

You cannot delete the root article.

Go back
{% else %} {% if cannot_delete_children %}

You do not have permission to delete articles that have children.

Go back
{% endif %} {% if delete_children %}

You are deleting an article with children. If you delete this article, then its children will also be deleted.

If you choose to purge this article, note that its children will also be purged.

Child articles

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

Please confirm that you would like to delete this article.

{% wiki_form delete_form %} Go back
{% endif %} {% endif %} {% endblock %}