diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2011-03-19 21:52:22 +0200 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2011-03-19 21:52:22 +0200 |
| commit | df5544cfe638bc2246f6821e6089dec7c1ad2494 (patch) | |
| tree | 0d5a3403ff1a023820367e741c5d031f98532f58 /demo/settings.py | |
| parent | dfe1bbadf614715bab1b28c0e03f05af5a145111 (diff) | |
key propogation almost working
Diffstat (limited to 'demo/settings.py')
| -rw-r--r-- | demo/settings.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/demo/settings.py b/demo/settings.py index d9858d2..218a774 100644 --- a/demo/settings.py +++ b/demo/settings.py @@ -71,6 +71,15 @@ TEMPLATE_LOADERS = ( # 'django.template.loaders.eggs.Loader', ) +TEMPLATE_CONTEXT_PROCESSORS = ( + "django.core.context_processors.auth", + "django.core.context_processors.debug", + "django.core.context_processors.i18n", + "django.core.context_processors.media", + "django.core.context_processors.request", + "fb.context_processors.fb_app_id", +) + MIDDLEWARE_CLASSES = ( 'django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', |
