Metadata-Version: 1.1
Name: django-google-analytics-id
Version: 0.9.0
Summary: Django application to add your Google analytics code to your website template(s)
Home-page: https://www.example.com/
Author: Alex Vyushkov
Author-email: alex.vyushkov@gmail.com
License: BSD License
Description: Google analytics for django
        ===========================
        
        This an installable django application to add your Google analytics code to your website template(s).
        It is compatible with Django 1.8, 1.9 and 1.10.
        
        Installation
        ============
        
        `pip install django-google-analytics-id`
        
        add `analytics` to INSTALLED_APPS
        
        
        Usage
        =====
        
        Add {% google_analytics 'UA-123-1' %} to your base template (in <HEAD> section).
        
        You can also pass the name of an option from setting.
        
        GOOGLE_ANALYTICS_ID = 'UA-123-1'
        {% google_analytics 'GOOGLE_ANALYTICS_ID' %}
        
        Options
        =======
        GOOGLE_ANALYTICS_CODES, dict
        
        Example:
        GOOGLE_ANALYTICS_CODES = {"portal": "UA-123-1", "admin": "UA-123-2"}
        
        DISABLE_GOOGLE_ANALYTICS, bool
        If true, {% google_analytics %} will return empty string. Can be used to enable google analytics in development
        and/or qa environments
        
        Bugs and requests
        =================
        
        If you have found a bug or if you have a request for additional functionality, please use the issue tracker on GitHub.
        
        https://github.com/Baguage/django-google-analytics/issues
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.8
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
