Metadata-Version: 2.0
Name: django-form-error-reporting
Version: 0.6
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
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: Django (>=1.9)
Requires-Dist: requests
Requires-Dist: six

Django Form Error Reporting
===========================

A form mixin that reports form errors as events to Google Analytics.

Usage
-----

Install using ``pip install django-form-error-reporting``.

See examples in tests/forms.py

.. code-block:: python

    class ReportedForm(GAErrorReportingMixin, Form):
        ga_tracking_id = 'UA-12345678-0'

        ...

Development
-----------

Please report bugs and open pull requests on `GitHub`_.

Use ``python setup.py test`` to run all tests.

Distribute a new version by updating the ``version`` argument in ``setup.py:setup`` and run ``python setup.py sdist bdist_wheel upload``.

Copyright
---------

Copyright |copy| 2017 HM Government (Ministry of Justice Digital Services). See LICENSE for further details.

.. |copy| unicode:: 0xA9 .. copyright symbol
.. _GitHub: https://github.com/ministryofjustice/django-form-error-reporting


