{% extends "wiki/base.html" %} {% from "wiki/includes/document_macros.html" import build_document_crumbs with context %} {% block title %}{{ page_title(_('Delete Document | {document}')|f(document=document.title)) }}{% endblock %} {% block content %}
{% if prevent %}

{{ _('Cannot delete pages with children until we fix this bug:') }} https://bugzilla.mozilla.org/show_bug.cgi?id=972541

{% else %} {{ build_document_crumbs(document) }}

{{ _('Delete') }} {{ _('{title}')|fe(title=document.title) }}

{{ _('Creator') }}

{{ revision.creator }}

{{ _('Creation Date') }}

{{ datetimeformat(revision.created, format='longdatetime') }}

{{ _('You are about to delete this document and all of its revisions. Please let us know why this page should be deleted.') }}

{{ csrf() }} {{ form }}

{{ _('Are you sure you want to continue?') }}

{{ _('Cancel') }}
{% endif %}
{% endblock %}