Hi,
I'm trying to integrate django basic apps blog Application.
I installed it on my project. the blog index templates works fine,
but post details is now working, shows me following error.
TemplateSyntaxError at /blog/2009/oct/15/hello-world/
Caught an exception while rendering: Reverse for '<function
post_comment at 0x176a938>' with arguments '()' and keyword arguments
'{}' not found.
Original Traceback (most recent call last):
File "/usr/lib/python2.5/site-packages/django/template/debug.py",
line 71, in render_node
result = node.render(context)
File "/usr/lib/python2.5/site-packages/django/template/__init__.py",
line 909, in render
return func(*resolved_vars)
File "/usr/lib/python2.5/site-packages/django/contrib/comments/
templatetags/comments.py", line 253, in comment_form_target
return comments.get_form_target()
File "/usr/lib/python2.5/site-packages/django/contrib/comments/
__init__.py", line 61, in get_form_target
return urlresolvers.reverse
("django.contrib.comments.views.comments.post_comment")
File "/usr/lib/python2.5/site-packages/django/core/urlresolvers.py",
line 341, in reverse
*args, **kwargs)))
File "/usr/lib/python2.5/site-packages/django/core/urlresolvers.py",
line 291, in reverse
"arguments '%s' not found." % (lookup_view, args, kwargs))
NoReverseMatch: Reverse for '<function post_comment at 0x176a938>'
with arguments '()' and keyword arguments '{}' not found
I'm using
Django 1.1
basic apps from code.google.com svn path.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---