diff options
| -rw-r--r-- | django/contrib/comments/templates/comments/reply.html | 19 | ||||
| -rw-r--r-- | django/contrib/comments/templates/comments/reply_preview.html | 34 |
2 files changed, 0 insertions, 53 deletions
diff --git a/django/contrib/comments/templates/comments/reply.html b/django/contrib/comments/templates/comments/reply.html deleted file mode 100644 index a36cdee595..0000000000 --- a/django/contrib/comments/templates/comments/reply.html +++ /dev/null @@ -1,19 +0,0 @@ -{% load comments %} -<form action="{% comment_form_target %}" method="post"> - {% for field in form %} - {% if field.is_hidden %} - {{ field }} - {% else %} - <p - {% if field.errors %} class="error"{% endif %} - {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}> - {% if field.errors %}{{ field.errors }}{% endif %} - {{ field.label_tag }} {{ field }} - </p> - {% endif %} - {% endfor %} - <p class="submit"> - <input type="submit" name="submit" class="submit-post" value="Reply"> - <input type="submit" name="submit" class="submit-preview" value="Preview"> - </p> -</form> diff --git a/django/contrib/comments/templates/comments/reply_preview.html b/django/contrib/comments/templates/comments/reply_preview.html deleted file mode 100644 index 0947476865..0000000000 --- a/django/contrib/comments/templates/comments/reply_preview.html +++ /dev/null @@ -1,34 +0,0 @@ -{% extends "comments/base.html" %} - -{% block title %}Preview your comment{% endblock %} - -{% block content %} - {% load comments %} - <form action="{% comment_form_target %}" method="post"> - {% if form.errors %} - <h1>Please correct the error{{ form.errors|pluralize }} below</h1> - {% else %} - <h1>Preview your comment</h1> - <blockquote>{{ comment|linebreaks }}</blockquote> - <p> - and <input type="submit" name="submit" value="Post your comment" id="submit"> or make changes: - </p> - {% endif %} - {% for field in form %} - {% if field.is_hidden %} - {{ field }} - {% else %} - <p - {% if field.errors %} class="error"{% endif %} - {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}> - {% if field.errors %}{{ field.errors }}{% endif %} - {{ field.label_tag }} {{ field }} - </p> - {% endif %} - {% endfor %} - <p class="submit"> - <input type="submit" name="submit" class="submit-post" value="Post"> - <input type="submit" name="submit" class="submit-preview" value="Preview"> - </p> - </form> -{% endblock %} |
