Metadata-Version: 1.1
Name: cmsplugin-alerts
Version: 1.2
Summary: Extend django-cms with emails when pages are published.
Home-page: https://gitlab.com/doctormo/django-cmsplugin-alerts
Author: Martin Owens
Author-email: doctormo@gmail.com
License: LGPLv3
Description: # django-cmsplugin-alerts
        
        ## What does it do?
        
        Adds a alert/notification subscription option to the cms toolbar and then
        sends an alert to any subscribed user using the django-notification alerts
        package.
        
        This requires that you're already using the `django-boxed-alerts` package in
        your project.
        
        Will optionally combine with `cmsplugin-diff` to to add more information to the
        emails and notification messages sent out. This package is designed to be used
        with this extra information.
        
        ## Installation
        
        ```
        pip install cmsplugin-alerts
        ```
        
        Add the plugin to your site's settings.py::
        
        ```
        INSTALLED_APPS = (
          ...
          'alerts',
          'cmsplugin_diff',
          'cmsplugin_alerts',
          ...
        )
        ```
        
        ## Issues
        
        Please submit issues and merge requests at GitLab issues tracker: https://gitlab.com/doctormo/django-cmsplugin-alerts/issues/.
        
        
Platform: linux
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
