Added comment app with support for adding and deleting comments to and from documents

This commit is contained in:
Roberto Rosario
2011-05-01 04:40:42 -04:00
parent 3261bb08b1
commit 9cebfc978b
12 changed files with 297 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ urlpatterns = patterns('',
(r'^admin/', include(admin.site.urls)),
(r'^grappelli/', include('grappelli.urls')),
(r'^sentry/', include('sentry.urls')),
(r'^comments/', include('django.contrib.comments.urls')),
(r'^comments/', include('comments.urls')),
)