Fix not add analytics if DEBUG=True
This commit is contained in:
parent
2ad984504c
commit
ebf8b0646d
1 changed files with 2 additions and 3 deletions
|
@ -8,9 +8,8 @@ def google_analytics(request):
|
||||||
"""
|
"""
|
||||||
host = request.get_host()
|
host = request.get_host()
|
||||||
ga_prop_id = getattr(settings, 'GOOGLE_ANALYTICS_PROPERTY_IDS', False).get(host)
|
ga_prop_id = getattr(settings, 'GOOGLE_ANALYTICS_PROPERTY_IDS', False).get(host)
|
||||||
print(ga_prop_id)
|
if not settings.DEBUG and ga_prop_id:
|
||||||
if ga_prop_id:
|
|
||||||
return {
|
return {
|
||||||
'GOOGLE_ANALYTICS_PROPERTY_ID': ga_prop_id
|
'GOOGLE_ANALYTICS_PROPERTY_ID': ga_prop_id
|
||||||
}
|
}
|
||||||
return {}
|
return {}
|
||||||
|
|
Loading…
Reference in a new issue