mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-22 09:38:18 +00:00
27 lines
1.1 KiB
Python
Executable File
27 lines
1.1 KiB
Python
Executable File
from django import template
|
|
from dss import settings
|
|
register = template.Library()
|
|
|
|
class ShowGoogleAnalyticsJS(template.Node):
|
|
def render(self, context):
|
|
code = getattr(settings, "GOOGLE_ANALYTICS_CODE", False)
|
|
if not code:
|
|
return "<!-- Goggle Analytics not included because you haven't set the settings.GOOGLE_ANALYTICS_CODE variable! -->"
|
|
|
|
if 'user' in context and context['user'] and context['user'].is_staff:
|
|
return "<!-- Goggle Analytics not included because you are a staff user! -->"
|
|
|
|
if settings.DEBUG:
|
|
return "<!-- Goggle Analytics not included because you are in Debug mode! -->"
|
|
|
|
return """
|
|
<script type="text/javascript">
|
|
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
|
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
|
</script>
|
|
<script type="text/javascript">
|
|
try {
|
|
var pageTracker = _gat._getTracker('""" + str(code) + """');
|
|
pageTracker._trackPageview();
|
|
} catch(err) {}</script>
|
|
""" |