django-markupwiki/markupwiki/templates/deleted_article.html

14 lines
380 B
HTML
Raw Normal View History

2010-03-30 14:43:30 +00:00
<h2>Article "{{article.title}}" has been deleted</h2>
<a href="{% url edit_article article.title %}">edit article</a>
{% if form %}
<form method="POST" action="{% url update_article_status article.title %}">
{{ form.as_ul }}
<input type="submit" />
</form>
{% endif %}
<p>Once an article has been deleted only a moderator can create an article with the same name.</p>