* Enable the threadedcomments app (code not included).
authorMatthijs Kooijman <matthijs@stdin.nl>
Tue, 25 Mar 2008 11:11:39 +0000 (12:11 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Tue, 25 Mar 2008 11:13:13 +0000 (12:13 +0100)
settings.py
urls.py

index 9b20669291b8a702718c5f7195dafb34f230abd9..655a76926478ddb83c57d9aac4141fb9c6a7290e 100644 (file)
@@ -97,6 +97,7 @@ INSTALLED_APPS = (
     'xerxes.influences',
     'xerxes.base',
     'xerxes.tools',
+    'threadedcomments',
 )
 
 TEMPLATE_CONTEXT_PROCESSORS = (
diff --git a/urls.py b/urls.py
index 9fed21d348fdd11448115409dc626cbf01d746a6..5b2c6f75a77eb6936d7973b443b8051319c571d4 100644 (file)
--- a/urls.py
+++ b/urls.py
@@ -7,6 +7,7 @@ import os
 urlpatterns = patterns('',
     url(r'^$', 'django.views.generic.simple.redirect_to', {'url' : '/influences/'}),
     url(r'^admin/', include('django.contrib.admin.urls')),
+    url(r'^comments/', include('threadedcomments.urls')),
 
     url(r'^influences/$', 'xerxes.influences.views.index', name='influences_index'),
     url(r'^influences/influence/$', 'xerxes.influences.views.influence_list', name='influences_influence_list'),