From 3c90e7d5e13112d04b68d7805a2dd13baf307a57 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 25 Feb 2010 18:55:37 +0100 Subject: [PATCH] Added templates location --- settings.py | 6 +++--- templates/base.html | 0 2 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 templates/base.html diff --git a/settings.py b/settings.py index 45a6095..f353f6e 100644 --- a/settings.py +++ b/settings.py @@ -66,9 +66,7 @@ MIDDLEWARE_CLASSES = ( ROOT_URLCONF = 'login.urls' 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. + os.path.join(os.path.dirname(__file__), "templates"), ) INSTALLED_APPS = ( @@ -78,6 +76,8 @@ INSTALLED_APPS = ( 'django.contrib.sessions', 'django.contrib.sites', 'registration', + 'eve_proxy', + 'eve_api', 'sso', ) diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..e69de29