From 320c10cb19f126e25ec84d7f69945f3aa10d17e4 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 5 Aug 2006 01:48:33 +0000 Subject: [PATCH] Fixed #2485 -- Added comment to project_template/settings.py that says to use absolute paths, not relative paths git-svn-id: http://code.djangoproject.com/svn/django/trunk@3525 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/conf/project_template/settings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/django/conf/project_template/settings.py b/django/conf/project_template/settings.py index 14da715db5..63e07c061a 100644 --- a/django/conf/project_template/settings.py +++ b/django/conf/project_template/settings.py @@ -60,8 +60,9 @@ MIDDLEWARE_CLASSES = ( ROOT_URLCONF = '{{ project_name }}.urls' TEMPLATE_DIRS = ( - # Put strings here, like "/home/html/django_templates". + # 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. ) INSTALLED_APPS = (