{% extends "wiki/base.html" %} {% from "wiki/includes/sidebar_modules.html" import document_tools with context %} {% set title = _('Delete Revision | {document}')|f(document=document.title) %} {% set crumbs = [(document.get_absolute_url(), document.title), (None, _('Delete Revision'))] %} {% set ga_content_group = "kb-cms" %} {% block content %}
{% if only_revision %}

{{ _('Unable to delete only revision of the document') }}

{{ _('To delete the document, please notify an admin.') }}

{% else %}

{{ _('Are you sure you want to delete this revision?') }}

{% if has_votes %}

{{ _('Warning: This revision has KB Helpfulness Votes associated with it. Deleting this revision will cause those votes to be deleted as well.') }}

{% endif %}
{{ revision.creator }}
{{ datetimeformat(revision.created, format='longdatetime') }}
{{ revision.content }}
{% csrf_token %}

{{ _('You are about to permanently delete this revision. This cannot be undone! Are you sure you want to continue?')|safe }}

{% endif %}
{% endblock %} {% block side_top %} {{ document_tools(document, document.parent, user, '', settings) }} {% endblock %}