help_text=_(u'Purge the article: Completely remove it (and all its contents) with no undo. Purging is a good idea if you want to free the slug such that users can create new articles in its place.'))
{% block pagetitle %}{% trans "Article deleted" %}{% endblock %}
{% block wiki_contents %}
<style type="text/css">
label[for=id_confirm]{
float:left;
margin-right:10px;
}
</style>
<h1class="page-header">{% trans "Article Deleted" %}</h1>
<pclass="lead">
{% trans "The article you were looking for has been deleted." %}
</p>
<divclass="row-fluid">
{% if not article.current_revision.locked or user|is_moderator %}
<divclass="span6">
<divclass="well">
<h2>{% trans "Restore" %}</h2>
<p>{% trans "You may restore this article and its children by clicking restore. Note that this restores ALL children." %}</p>
<p>
<ahref="?restore=1"class="btn">
<spanclass="icon-repeat"></span>
{% trans "Restore" %}
</a>
</p>
</div>
</div>
{% endif %}
{% if user|is_moderator %}
<divclass="span6">
<divclass="well">
<h2>{% trans "Purge deletion" %}</h2>
<p>{% trans "You may remove this article and any children permanently and free their slugs by clicking the below button. This action cannot be undone." %}</p>