user2968773
user2968773

Reputation: 73

Google Analytics is not working in Flask

  1. I have setup a simple website in Flask served by Nginx and Gunicorn (http://altanga.com).
  2. Included Google tracking code in base.html and extended in every single template and I see the code is there when I view page source.

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

Answers (1)

Zion Oyemade
Zion Oyemade

Reputation: 433

Try this code:

{% import "bootstrap/google.html" as google %}

{% block scripts %}
{{super()}}
{{google.uanalytics('UA-106188456-1')}}
{% endblock %}

Upvotes: 1

Related Questions