From 71411af9bf0a25041f53c223ab338a76b14435fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20Mart=C3=ADn?= Date: Fri, 24 May 2013 12:21:32 +0200 Subject: [PATCH] Added google analytics and app_version to the new template context --- config/production/local_settings.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/production/local_settings.py b/config/production/local_settings.py index 95b6315..67b42e0 100644 --- a/config/production/local_settings.py +++ b/config/production/local_settings.py @@ -88,3 +88,8 @@ LOGGING = { }, }, } + +TEMPLATE_CONTEXT = [ + ('google_analytics', 'UA-41178753-1'), + ('app_version', environ['APP_VERSION']), +]