diff --git a/django/contrib/comments/templates/comments/reply.html b/django/contrib/comments/templates/comments/reply.html deleted file mode 100644 index a36cdee595ff8..0000000000000 --- a/django/contrib/comments/templates/comments/reply.html +++ /dev/null @@ -1,19 +0,0 @@ -{% load comments %} -
- {% for field in form %} - {% if field.is_hidden %} - {{ field }} - {% else %} - - {% endif %} - {% endfor %} -

- - -

-
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 0947476865c19..0000000000000 --- 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 %} -
- {% if form.errors %} -

Please correct the error{{ form.errors|pluralize }} below

- {% else %} -

Preview your comment

-
{{ comment|linebreaks }}
-

- and or make changes: -

- {% endif %} - {% for field in form %} - {% if field.is_hidden %} - {{ field }} - {% else %} - - {% endif %} - {% endfor %} -

- - -

-
-{% endblock %}