# Django settings for carto_1_1 project.
+import os
+
DEBUG = True
TEMPLATE_DEBUG = DEBUG
# 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 = (
'django.contrib.sessions',
'django.contrib.sites',
'annuaire',
+ 'south',
+ 'django.contrib.admin',
)