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
- Template tag - list punctuation for a list of items by shapiromatron 9 months, 3 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months ago
- Serializer factory with Django Rest Framework by julio 1 year, 4 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 5 months ago
- Help text hyperlinks by sa2812 1 year, 6 months 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.