Metadata-Version: 1.0
Name: django-piwik
Version: 0.1
Summary: A simple app to add the Piwik JS tracking code to your template.
Home-page: https://github.com/raphaa/django-piwik
Author: Raphael Jasjukaitis
Author-email: webmaster@raphaa.de
License: BSD License
Description: Django-Piwik
        ============
        
        A simple app to add the Piwik JS tracking code to your template.
        
        
        Requirements
        ------------
        
         * Django
        
        
        Installation
        ------------
        
        Using PyPI you can simply type into a terminal:
        
            pip install django-piwik
        
        or
        
            easy_install django-piwik
        
        
        Configuration
        -------------
        
        Add ``piwik`` to the list of ``INSTALLED_APPS`` in your ``settings.py`` file.
        
        Also ``PIWIK_SITE_ID`` (e.g. ``1``) and ``PIWIK_URL`` (e.g. ``'http://piwik.example.com/'``, please don't forget the trailing slash!) are required.
        
        
        In the template, put ``{% load piwik_tags %}`` to the top and add ``{% tracking_code %}`` before the ``</body>`` tag.
        
        
        That's it. Happy tracking!
        
        
        Author
        ------
        
        Copyright 2013 Raphael Jasjukaitis <webmaster@raphaa.de>
        
        
        Released under the BSD license.
        
Platform: OS Independent
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
