diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-27 17:01:06 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-27 17:01:06 +0100 |
commit | 305592b85c83a63c7bf14ce5ea63fbda29f1a81e (patch) | |
tree | 4e5c1b629c6108bca3d6e43e5e499cefca1fc2d0 /ishtar/settings.py.example | |
parent | d3050b0b9692cb2613ebf408498c1ad038eb2544 (diff) | |
download | Ishtar-305592b85c83a63c7bf14ce5ea63fbda29f1a81e.tar.bz2 Ishtar-305592b85c83a63c7bf14ce5ea63fbda29f1a81e.zip |
Add a context processor
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 = ( |