diff options
Diffstat (limited to 'ishtar/settings.py.example')
-rw-r--r-- | ishtar/settings.py.example | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ishtar/settings.py.example b/ishtar/settings.py.example index 0b1177830..2fe347345 100644 --- a/ishtar/settings.py.example +++ b/ishtar/settings.py.example @@ -2,6 +2,7 @@ # Ishtar custom SRID = 27572 +APP_NAME = "" ROOT_PATH = "/var/local/webapp/ishtar/ishtar/" URL_PATH = "" @@ -83,6 +84,14 @@ MIDDLEWARE_CLASSES = ( 'django.contrib.messages.middleware.MessageMiddleware', ) +TEMPLATE_CONTEXT_PROCESSORS = ( + 'furnitures.context_processors.get_base_context', + "django.core.context_processors.auth", + "django.core.context_processors.debug", + "django.core.context_processors.i18n", + "django.core.context_processors.media", +) + ROOT_URLCONF = 'ishtar.urls' TEMPLATE_DIRS = ( |