Use {% urchin "UA-1234567-1" %} to insert the Javascript snippet for a Google Analytics site.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | from django import template
register = template.Library()
def urchin(uacct):
return """
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "%(uacct)s";
urchinTracker();
</script>
""" % { 'uacct': uacct }
register.simple_tag(urchin)
|
More like this
- Form field with fixed value by roam 1 week, 4 days ago
- New Snippet! by Antoliny0919 2 weeks, 3 days ago
- Add Toggle Switch Widget to Django Forms by OgliariNatan 3 months, 1 week ago
- get_object_or_none by azwdevops 6 months, 4 weeks ago
- Mask sensitive data from logger by agusmakmun 8 months, 3 weeks ago
Comments
good thing will be to tie this to settings.py and/or sites framework.
#
it's worth noting the google javascript has changed since this was posted
#
Please login first before commenting.