diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2011-03-19 22:15:12 +0200 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2011-03-19 22:15:12 +0200 |
| commit | b454a79d106d256f7eea8d0e23567e613928bab5 (patch) | |
| tree | 34972655b02eefc9a0be7bbf22da8ff632e2ea92 /fb | |
| parent | df5544cfe638bc2246f6821e6089dec7c1ad2494 (diff) | |
and it worked
Diffstat (limited to 'fb')
| -rw-r--r-- | fb/context_processors.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fb/context_processors.py b/fb/context_processors.py index 92a9a0a..82e4d4f 100644 --- a/fb/context_processors.py +++ b/fb/context_processors.py @@ -1,5 +1,5 @@ from django.conf import settings def fb_app_id(request): - print 'bla' - return { settings.FACEBOOK_APP_ID }
\ No newline at end of file + """Add the Facebook app id to template context""" + return { 'FACEBOOK_APP_ID' : settings.FACEBOOK_APP_ID }
\ No newline at end of file |
