django threadedcomments
Posted
by Patrick
on Stack Overflow
See other posts from Stack Overflow
or by Patrick
Published on 2010-05-12T13:21:06Z
Indexed on
2010/05/12
13:24 UTC
Read the original article
Hit count: 214
Hi folks,
I would like to setup a comment systems on my site, using django threadedcomments, and I follow all the steps in the Tutorial, however, I get the following error:
No module named newforms.util
I am not sure what causing this issue, here is my configuration:
#settings.py
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'myproject.myapp',
'threadedcomments',
)
#urls.py
from django.conf import settings
from django.conf.urls.defaults import *
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
(r'^admin/', include(admin.site.urls)),
(r'^threadedcomments/', include('threadedcomments.urls')),
)
Please let me know if there is another better choice for commenting, as long as the comment system is flexible and able to do lot of customization, as well as threadedcomment, of coz, integrating with Rating, I am happy to use the other one.
Thanks guys.
© Stack Overflow or respective owner