Metadata-Version: 1.1
Name: django-google-analytics-id
Version: 1.0.1
Summary: Django application to add your Google analytics code to your website template(s)
Home-page: https://github.com/Baguage/django-google-analytics-id
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.
        
        Python 2.7 and python 3.5 are supported.
        
        Installation
        ============
        
        `pip install django-google-analytics-id`
        
        add `analytics` to INSTALLED_APPS
        
        
        Usage
        =====
        
        Load template tag {% load analytics_tags %}
        
        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' %}
        
        if no parameter is provided, settings.GOOGLE_ANALYTICS_ID as default value
        
        Options
        =======
        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-id/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
