Metadata-Version: 1.0
Name: django-notifyme-onsite
Version: 0.0.1a
Summary: A notification framework for django
Home-page: http://github.com/stefanfoulis/django-notifyme-onsite
Author: Stefan Foulis
Author-email: stefan.foulis@gmail.com
License: BSD
Description: ======================
        django-notifyme-onsite
        ======================
        
        This is a plugin for https://github.com/stefanfoulis/django-notifyme
        
        ``django-notifyme-onsite`` is a delivery backend for django-notifyme. It allows displaying notifications on the
        website and keeps a list of per user notifications in the database. It contains hook for users to *dismiss* a
        a sticky notification.
        
        Installation
        ============
        
        Dependencies:
         * django-notifyme
        
        ::
        
            pip install django-notifyme-onsite
        
        Add ``notifyme_onsite`` to ``INSTALLED_APPS`` and register the backend somewhere in your project code (best in a
        models.py)::
        
            import notifyme.delivery
            from notifyme_onsite.delivery import OnsiteStickyBackend
            notifyme.delivery.backend.register(OnsiteStickyBackend)
        
Platform: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
