I have tried to implement comments in a blog I'm building with this in
my template:

{% render_comment_form for wBlog.entry object.id %}

It then goes on to fetch another templete inside django that then
fails:

Template error

In template /home/weiter/webapps/django_v1/lib/python2.5/django/
contrib/comments/templates/comments/form.html, error at line 2
Caught an exception while rendering: Reverse for '<function
post_comment at 0x9a19294>' with arguments '()' and keyword arguments
'{}' not found.
1       {% load comments %}
2       <form action="{% comment_form_target %}" method="POST">
3         {% for field in form %}
4           {% if field.is_hidden %}
5             {{ field }}
6           {% else %}
7             <p
8               {% if field.errors %} class="error"{% endif %}
9               {% ifequal field.name "honeypot" %} style="display:none;"{%
endifequal %}>
10              {% if field.errors %}{{ field.errors }}{% endif %}
11              {{ field.label_tag }} {{ field }}
12            </p>

I don't understand what I'm doing wrong?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to