From 91e36a67f858d25fe6d7f38310a589a59c798f21 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Fri, 19 Nov 2010 20:16:55 +0100 Subject: Cosmetic changes (refs #65) --- chimere/settings.py.example | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'chimere/settings.py.example') diff --git a/chimere/settings.py.example b/chimere/settings.py.example index 54118a9..48785d5 100644 --- a/chimere/settings.py.example +++ b/chimere/settings.py.example @@ -128,12 +128,12 @@ MIDDLEWARE_CLASSES = ( ROOT_URLCONF = 'chimere.urls' -TEMPLATE_DIRS = ( +TEMPLATE_DIRS = [ # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. ROOT_PATH + 'templates', -) +] INSTALLED_APPS = ( 'django.contrib.auth', @@ -147,3 +147,6 @@ INSTALLED_APPS = ( # activate it if you want to use RSS feeds 'chimere.rss' ) + +if 'chimere.rss' in INSTALLED_APPS: + TEMPLATE_DIRS.append(ROOT_PATH + 'rss/templates') -- cgit v1.2.3