From e093d5c0b4d1042834972c14e744641b65a257e9 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Tue, 25 Mar 2008 12:11:39 +0100 Subject: [PATCH] * Enable the threadedcomments app (code not included). --- settings.py | 1 + urls.py | 1 + 2 files changed, 2 insertions(+) diff --git a/settings.py b/settings.py index 9b20669..655a769 100644 --- a/settings.py +++ b/settings.py @@ -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 9fed21d..5b2c6f7 100644 --- 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'), -- 2.30.2