If i click a blog-entry, i am getting following error:
Caught an exception while rendering: Reverse for '<function
post_comment at 0x2152ed8>' with arguments '()' and keyword arguments
'{}' not found.
1 {% load comments i18n %}
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>
Perhaps I am not understanding correctly, but this is the stock basic-
blog application. What I am doing wrong.
Using SVN HEAD of django and tagging.
Thanks in advance again! ;)
cheers