Metadata-Version: 2.0
Name: django-site-notifications
Version: 1.0.0
Summary: Enable a message on every page load.
Home-page: http://github.com/dstegelman/django-site-notifications
Author: Derek Stegelman
Author-email: dstegelman@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.4
Classifier: Framework :: Django :: 1.5
Classifier: Framework :: Django :: 1.6
Classifier: Framework :: Django :: 1.7
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License

Enable a message on every page load.

Official Docs
-------------

http://django-site-notifications.readthedocs.org

Install
-------

To install django-site-notifications::

	pip install django-site-notifications

add to installed apps::

	site_notifications

add middleware::

    'site_notifications.middleware.NotificationMiddleware',

The middleware needs to be included below the messages framework.

