From 17dd049b947cb447628002bae3068581733565f1 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Sun, 25 Jan 2009 09:52:32 -0500 Subject: tweaked comments form, journal starting to work --- bn_django/templates/comments/form.html | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 bn_django/templates/comments/form.html (limited to 'bn_django/templates') diff --git a/bn_django/templates/comments/form.html b/bn_django/templates/comments/form.html new file mode 100644 index 0000000..67068e8 --- /dev/null +++ b/bn_django/templates/comments/form.html @@ -0,0 +1,23 @@ +{% load comments i18n %} +
+ + {% for field in form %} + {% if field.is_hidden %} {{ field }} {% else %} + {% ifequal field.name "honeypot" %} + {{ field.label_tag }}{{ field }} + {% else %} + + + {% endifequal %} + {% endif %} + {% endfor %} + +
+ + {% if field.errors %}{{ field.errors }}{% endif %} + {{ field.label_tag }}{{ field }} +
+ + +
+
-- cgit v1.2.3