diff options
author | Bryan Newbold <bnewbold@animus.robocracy.org> | 2008-09-23 18:52:55 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@animus.robocracy.org> | 2008-09-23 18:52:55 -0700 |
commit | 979f5901af8410ff138de0aa41013bfb193060d6 (patch) | |
tree | f3c59f2a2f1da90e13336e16efa4b48003534052 /bn_django/templates/comments/free_preview.html | |
parent | 6a22baa306a72557698d64ac6c09842bed81f66b (diff) | |
download | bnewnet-979f5901af8410ff138de0aa41013bfb193060d6.tar.gz bnewnet-979f5901af8410ff138de0aa41013bfb193060d6.zip |
1.0
Diffstat (limited to 'bn_django/templates/comments/free_preview.html')
-rw-r--r-- | bn_django/templates/comments/free_preview.html | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/bn_django/templates/comments/free_preview.html b/bn_django/templates/comments/free_preview.html deleted file mode 100644 index 3c212c0..0000000 --- a/bn_django/templates/comments/free_preview.html +++ /dev/null @@ -1,46 +0,0 @@ -{% extends "base.html" %} - - -{% block title %}Preview your comment{% endblock %} - -{% block content %} - -<form action="../postfree/" 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.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 %} |