diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-10-05 05:04:56 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-10-05 05:04:56 +0000 |
| commit | cf34d1f6870b0651c52f50a670f31f33201cd7a3 (patch) | |
| tree | a7c7c9a0a1739600f4d278285fd149b2bd0c9200 | |
| parent | d343aa3022b3f18c89b06766b87bf71dda730afd (diff) | |
Fixed #9141 -- Removed two templates from django.contrib.comments that were not being used.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9115 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -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 %} |
