Reputation: 73
But, it is not capturing any activity. It's been over 2 hours already, but no luck.
Below is my ga code:
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-106188456-1', 'auto');
ga('send', 'pageview');
</script>
Please help.
Upvotes: 1
Views: 1096
Reputation: 433
Try this code:
{% import "bootstrap/google.html" as google %}
{% block scripts %}
{{super()}}
{{google.uanalytics('UA-106188456-1')}}
{% endblock %}
Upvotes: 1