Metadata-Version: 1.1
Name: django-form-error-reporting
Version: 0.4
Summary: A form mixin that reports form errors as events to Google Analytics
Home-page: https://github.com/ministryofjustice/django-form-error-reporting
Author: Ministry of Justice Digital Services
Author-email: UNKNOWN
License: MIT
Description: Django Form Error Reporting
        ===========================
        
        A form mixin that reports form errors as events to Google Analytics.
        
        Installation
        ------------
        
        .. code-block:: bash
        
            pip install django-form-error-reporting
        
        Usage
        -----
        
        See examples in tests/forms.py
        
        .. code-block:: python
        
            class ReportedForm(GAErrorReportingMixin, Form):
                ga_tracking_id = 'UA-12345678-0'
        
                ...
        
        Testing
        -------
        
        .. code-block:: bash
        
            python setup.py test
        
        Copyright
        ---------
        
        Copyright |copy| 2016 HM Government (Ministry of Justice Digital Services). See
        LICENSE for further details.
        
        .. |copy| unicode:: 0xA9 .. copyright symbol
        
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
