-
Wind and rain http://yfrog.com/4p37305829j at Mon 08 Mar 2010, 4:29 p.m.
-
Really? http://yfrog.com/j0xbvj at Mon 08 Mar 2010, 8:42 a.m.
-
Matti at Mon 08 Mar 2010, 3:37 a.m.
Hi, I ended up replacing part of the comments/form.html template for my project as follows. This does exactly the same thing as you suggested but now the render_comment_form template tag works for both registered/non-registered cases. ... [HTML_REMOVED] {% if request.user.is_authenticated %} {% ifnotequal field.name "name" %} {% ifnotequal field.name "email" %} {% ifnotequal field.name "url" %} {{ field.label_tag }} {{ field }} {% endifnotequal %} {% endifnotequal %} {% endifnotequal %} {% else %} {{ field.label_tag }} {{ field }} {% endif %} [HTML_REMOVED] ...