14 lines
380 B
HTML
14 lines
380 B
HTML
<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>
|