aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/templates/comments/preview.html
diff options
context:
space:
mode:
Diffstat (limited to 'bn_django/templates/comments/preview.html')
-rw-r--r--bn_django/templates/comments/preview.html46
1 files changed, 0 insertions, 46 deletions
diff --git a/bn_django/templates/comments/preview.html b/bn_django/templates/comments/preview.html
deleted file mode 100644
index 052b373..0000000
--- a/bn_django/templates/comments/preview.html
+++ /dev/null
@@ -1,46 +0,0 @@
-{% extends "base.html" %}
-
-
-{% block title %}Preview your comment{% endblock %}
-
-{% block content %}
-
-<form action="../post/" method="post">
- {% if comment_form.has_errors %}
- <p><strong style="color: red;">Please correct the following errors.</strong></p>
- {% else %}
- <div class="comment">
- {{ comment.comment|escape|urlizetrunc:"40"|linebreaks }}
- <p class="date small">Posted by <strong>{{ comment.person_name }}</strong></p>
- </div>
-
- <p><input type="submit" name="post" value="Post public comment" /></p>
-
- <h1>Or edit it again</h1>
- {% endif %}
-
- {% if comment_form.person_name.errors %}
- {{ comment_form.person_name.html_error_list }}
- {% endif %}
-
- <p><label for="id_person_name">Your name:</label> {{ comment_form.person_name }}</p>
-
- {% if comment_form.comment.errors %}
- {{ comment_form.comment.html_error_list }}
- {% endif %}
-
- <p>
- <label for="id_comment">Comment:</label>
- <br />
- {{ comment_form.comment }}
- </p>
-
- <input type="hidden" name="options" value="{{ options }}" />
- <input type="hidden" name="target" value="{{ target }}" />
- <input type="hidden" name="gonzo" value="{{ hash }}" />
-
- <p>
- <input type="submit" name="preview" value="Preview revised comment" />
- </p>
-</form>
-{% endblock %}