Hello, I have this issue: Caught an exception while rendering: Reverse
for '<function post_comment at 0x87ca4fc>' with arguments '()' and
keyword arguments '{}' not found.
The second line is what is causing me trouble:
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>
In my template i just have this line:
{% render_comment_form for records.record record.id %}
All this according to:
http://docs.djangoproject.com/en/dev/ref/contrib/comments/
Hope you can guide me :)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---